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/05 14:24:22 UTC

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

Author: hindessm
Date: Thu Oct  5 05:24:21 2006
New Revision: 453201

URL: http://svn.apache.org/viewvc?view=rev&rev=453201
Log:
Make sure is.x86 and is.x86_64 aren't both set.

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=453201&r1=453200&r2=453201
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/make/properties.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/make/properties.xml Thu Oct  5 05:24:21 2006
@@ -63,10 +63,15 @@
         </or>
     </condition>
     <condition property="is.x86">
-        <or>
-            <os arch="x86"/>
-            <os arch="i386"/>
-        </or>
+	<and>
+	    <not>
+                <isset property="is.x86_64" />
+            </not>
+            <or>
+                <os arch="x86"/>
+                <os arch="i386"/>
+            </or>
+        </and>
     </condition>
     <condition property="is.ia64">
         <os arch="ia64" />