|
From: <eli...@us...> - 2006-07-07 14:48:44
|
Revision: 2455 Author: elias_naur Date: 2006-07-07 07:05:06 -0700 (Fri, 07 Jul 2006) ViewCVS: http://svn.sourceforge.net/java-game-lib/?rev=2455&view=rev Log Message: ----------- Linux: Remove debug echos from build.xml Modified Paths: -------------- trunk/LWJGL/platform_build/linux_ant/build.xml Modified: trunk/LWJGL/platform_build/linux_ant/build.xml =================================================================== --- trunk/LWJGL/platform_build/linux_ant/build.xml 2006-07-07 14:02:13 UTC (rev 2454) +++ trunk/LWJGL/platform_build/linux_ant/build.xml 2006-07-07 14:05:06 UTC (rev 2455) @@ -18,11 +18,9 @@ <exec executable="uname" outputproperty="hwplatform"> <arg value="-i"/> </exec> - <echo message="${hwplatform}"/> <condition property="libs" value="${libs64}" else="${libs32}"> <equals arg1="${hwplatform}" arg2="x86_64"/> </condition> - <echo message="${libs}"/> <property name="linker_flags" value="-Wl,--version-script=${native}/linux/lwjgl.map -shared -O2 -Wall -o ${libname} ${libs}"/> <apply dir="." executable="cc" dest="." skipemptyfilesets="true" failonerror="true"> <arg line="${cflags}"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |