|
From: Elias N. <eli...@us...> - 2005-05-11 11:44:35
|
Update of /cvsroot/java-game-lib/LWJGL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25326 Modified Files: build.xml Log Message: Linux: applied the build.xml patch allowing compile_native to work Index: build.xml =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/build.xml,v retrieving revision 1.74 retrieving revision 1.75 diff -u -d -r1.74 -r1.75 --- build.xml 30 Mar 2005 17:51:02 -0000 1.74 +++ build.xml 11 May 2005 11:44:27 -0000 1.75 @@ -475,11 +475,7 @@ <!-- Compiles LWJGL on Linux platforms --> <target name="-compile_native_linux" if="lwjgl.platform.linux"> <echo>Compiling Linux LWJGL version</echo> - <apply executable="sh" dir="${lwjgl.src.native}"> - <fileset dir="${lwjgl.src.native}"> - <include name="build.sh" /> - </fileset> - </apply> + <exec executable="make" dir="${lwjgl.src.native}/linux"/> <move file="${lwjgl.src.native}/linux/liblwjgl.so" tofile="${lwjgl.lib}/liblwjgl.so" /> </target> |