aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSylvestre Ledru <[email protected]>2011-03-13 22:24:35 +0100
committerSven Gothel <[email protected]>2011-03-20 18:40:59 +0100
commitf20f3b7214bbd28862ae66ead6ae6aa949abdc1f (patch)
tree773e29924d9db7585e8b7a8ae6925e8f5de9153a
parent90824b172b7c47dcaff306bd8b35d2fb82c2684f (diff)
use.macosx32 and use.macosx64 are only true when I run Mac OS X
-rwxr-xr-xmake/gluegen-cpptasks-base.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/make/gluegen-cpptasks-base.xml b/make/gluegen-cpptasks-base.xml
index b967a91..ced58c0 100755
--- a/make/gluegen-cpptasks-base.xml
+++ b/make/gluegen-cpptasks-base.xml
@@ -138,10 +138,16 @@
<istrue value="${macosppc}" />
</condition>
<condition property="use.macosx32">
+ <and>
<istrue value="${macosx32}" />
+ <os family="mac"/>
+ </and>
</condition>
<condition property="use.macosx64">
+ <and>
<istrue value="${macosx64}" />
+ <os family="mac"/>
+ </and>
</condition>
</target>