Linux: applied the build.xml patch allowing compile_native to work

This commit is contained in:
Elias Naur 2005-05-11 11:44:27 +00:00
parent 04b3595477
commit 54e5020a34

View file

@ -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>