You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2012/08/24 18:26:50 UTC

svn commit: r1376983 - /lucene/dev/trunk/build.xml

Author: uschindler
Date: Fri Aug 24 16:26:49 2012
New Revision: 1376983

URL: http://svn.apache.org/viewvc?rev=1376983&view=rev
Log:
Better condition, thanks Dawid!

Modified:
    lucene/dev/trunk/build.xml

Modified: lucene/dev/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/build.xml?rev=1376983&r1=1376982&r2=1376983&view=diff
==============================================================================
--- lucene/dev/trunk/build.xml (original)
+++ lucene/dev/trunk/build.xml Fri Aug 24 16:26:49 2012
@@ -275,7 +275,7 @@
   <!-- we need this extra condition, as we want to match only on "true", not solely if property is set: -->
   <property name="disable.javadocs-lint" value="false" />
   <condition property="-disable.javadocs-lint">
-    <equals arg1="${disable.javadocs-lint}" arg2="true"/>
+    <istrue value="${disable.javadocs-lint}"/>
   </condition>
   <target name="-jenkins-javadocs-lint" unless="-disable.javadocs-lint">
     <antcall target="javadocs-lint"/>