You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2010/06/01 14:32:40 UTC

svn commit: r950039 - /harmony/enhanced/java/trunk/classlib/make/properties.xml

Author: hindessm
Date: Tue Jun  1 12:32:39 2010
New Revision: 950039

URL: http://svn.apache.org/viewvc?rev=950039&view=rev
Log:
Simplify properties conditions.

Modified:
    harmony/enhanced/java/trunk/classlib/make/properties.xml

Modified: harmony/enhanced/java/trunk/classlib/make/properties.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/trunk/classlib/make/properties.xml?rev=950039&r1=950038&r2=950039&view=diff
==============================================================================
--- harmony/enhanced/java/trunk/classlib/make/properties.xml (original)
+++ harmony/enhanced/java/trunk/classlib/make/properties.xml Tue Jun  1 12:32:39 2010
@@ -318,9 +318,7 @@
     <!-- flags -->
     <property name="hy.no.thr" value="false" />
     <condition property="hy.skip.thr" value="true">
-        <not>
-            <equals arg1="${hy.no.thr}" arg2="false" />
-        </not>
+        <istrue value="${hy.no.thr}" />
     </condition>
 
     <property name="hy.thr.no.deploy" value="false" />
@@ -330,16 +328,12 @@
 
     <property name="hy.local.zlib" value="false" />
     <condition property="hy.skip.zlib" value="true">
-        <not>
-            <equals arg1="${hy.local.zlib}" arg2="false" />
-        </not>
+        <istrue value="${hy.local.zlib}" />
     </condition>
 
     <property name="hy.zip.api" value="false" />
     <condition property="hy.skip.zip.api" value="true">
-        <not>
-            <equals arg1="${hy.zip.api}" arg2="true" />
-        </not>
+        <isfalse value="${hy.zip.api}" />
      </condition>
 
     <condition property="hy.portlib.stubs" value="true">