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 2006/10/26 20:35:26 UTC

svn commit: r468085 - /incubator/harmony/enhanced/classlib/trunk/make/properties.xml

Author: hindessm
Date: Thu Oct 26 11:35:26 2006
New Revision: 468085

URL: http://svn.apache.org/viewvc?view=rev&rev=468085
Log:
Make properties rely on ${os.arch} (which can be overriden) rather than
<os arch="xxx"> which can't.

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

Modified: incubator/harmony/enhanced/classlib/trunk/make/properties.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/make/properties.xml?view=diff&rev=468085&r1=468084&r2=468085
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/make/properties.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/make/properties.xml Thu Oct 26 11:35:26 2006
@@ -70,13 +70,13 @@
                 <isset property="is.x86_64" />
             </not>
             <or>
-                <os arch="x86"/>
-                <os arch="i386"/>
+                <equals arg1="x86" arg2="${os.arch}"/>
+                <equals arg1="i386" arg2="${os.arch}"/>
             </or>
         </and>
     </condition>
     <condition property="is.ia64">
-        <os arch="ia64" />
+        <equals arg1="ia64" arg2="${os.arch}"/>
     </condition>
     <condition property="is.64bit">
         <or>