diff options
author | Kenneth Russel <[email protected]> | 2006-02-19 23:49:21 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2006-02-19 23:49:21 +0000 |
commit | 60edc67981e7c3c1d4d43bc80994a8d63952c7bb (patch) | |
tree | 363f52bb63914d9e6cfb5d94790d73020c06f7ad /make/gluegen-cpptasks.xml | |
parent | d71651ec76985c937fac1584ce1c56f3a2dc0132 (diff) |
Patched isLinuxAMD64 computation based on feedback from cjbeyer on JOGL forum
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/gluegen/trunk@17 a78bb65f-1512-4460-ba86-f6dc96a7bf27
Diffstat (limited to 'make/gluegen-cpptasks.xml')
-rwxr-xr-x | make/gluegen-cpptasks.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/make/gluegen-cpptasks.xml b/make/gluegen-cpptasks.xml index 468d46a..a916c80 100755 --- a/make/gluegen-cpptasks.xml +++ b/make/gluegen-cpptasks.xml @@ -94,7 +94,10 @@ <condition property="isLinuxAMD64"> <and> <istrue value="${isLinux}" /> - <os arch="AMD64" /> + <or> + <os arch="AMD64" /> + <os arch="x86_64" /> + </or> </and> </condition> <condition property="isLinuxIA64"> |