|
From: <eli...@us...> - 2006-09-08 10:01:39
|
Revision: 2570
http://svn.sourceforge.net/java-game-lib/?rev=2570&view=rev
Author: elias_naur
Date: 2006-09-08 03:01:06 -0700 (Fri, 08 Sep 2006)
Log Message:
-----------
Linux: changed uname -i to uname -m to improve 64 bit detection in build script
Modified Paths:
--------------
trunk/LWJGL/platform_build/linux_ant/build.xml
trunk/LWJGL/platform_build/linux_ant/build_devil.xml
trunk/LWJGL/platform_build/linux_ant/build_fmod3.xml
Modified: trunk/LWJGL/platform_build/linux_ant/build.xml
===================================================================
--- trunk/LWJGL/platform_build/linux_ant/build.xml 2006-09-08 08:29:16 UTC (rev 2569)
+++ trunk/LWJGL/platform_build/linux_ant/build.xml 2006-09-08 10:01:06 UTC (rev 2570)
@@ -17,7 +17,7 @@
<target name="compile">
<exec executable="uname" outputproperty="hwplatform">
- <arg value="-i"/>
+ <arg value="-m"/>
</exec>
<condition property="libs" value="${libs64}" else="${libs32}">
<equals arg1="${hwplatform}" arg2="x86_64"/>
Modified: trunk/LWJGL/platform_build/linux_ant/build_devil.xml
===================================================================
--- trunk/LWJGL/platform_build/linux_ant/build_devil.xml 2006-09-08 08:29:16 UTC (rev 2569)
+++ trunk/LWJGL/platform_build/linux_ant/build_devil.xml 2006-09-08 10:01:06 UTC (rev 2570)
@@ -17,7 +17,7 @@
<target name="compile">
<exec executable="uname" outputproperty="hwplatform">
- <arg value="-i"/>
+ <arg value="-m"/>
</exec>
<condition property="libs" value="${libs64}" else="${libs32}">
<equals arg1="${hwplatform}" arg2="x86_64"/>
Modified: trunk/LWJGL/platform_build/linux_ant/build_fmod3.xml
===================================================================
--- trunk/LWJGL/platform_build/linux_ant/build_fmod3.xml 2006-09-08 08:29:16 UTC (rev 2569)
+++ trunk/LWJGL/platform_build/linux_ant/build_fmod3.xml 2006-09-08 10:01:06 UTC (rev 2570)
@@ -21,7 +21,7 @@
<target name="compile">
<exec executable="uname" outputproperty="hwplatform">
- <arg value="-i"/>
+ <arg value="-m"/>
</exec>
<condition property="libs" value="${libs64}" else="${libs32}">
<equals arg1="${hwplatform}" arg2="x86_64"/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|