|
From: <ma...@us...> - 2006-07-12 19:38:29
|
Revision: 2504 Author: matzon Date: 2006-07-12 12:38:24 -0700 (Wed, 12 Jul 2006) ViewCVS: http://svn.sourceforge.net/java-game-lib/?rev=2504&view=rev Log Message: ----------- check for fmod property when it's actually been imported Modified Paths: -------------- trunk/LWJGL/platform_build/linux_ant/build_fmod3.xml Modified: trunk/LWJGL/platform_build/linux_ant/build_fmod3.xml =================================================================== --- trunk/LWJGL/platform_build/linux_ant/build_fmod3.xml 2006-07-12 19:36:29 UTC (rev 2503) +++ trunk/LWJGL/platform_build/linux_ant/build_fmod3.xml 2006-07-12 19:38:24 UTC (rev 2504) @@ -1,7 +1,6 @@ <?xml version="1.0"?> <project name="fmod3" basedir="../../bin/fmod3" default="compile"> - <fail message="Missing FMOD path environment property" unless="env.FMOD"/> <property name="native" location="../../src/native"/> <property environment="env"/> <property name="fmod.home" location="${env.FMOD}"/> @@ -10,6 +9,8 @@ <property name="libs32" value="-lpthread"/> <property name="libs64" value="-lpthread"/> <property name="cflags" value="-O2 -Wall -c -fPIC -std=c99 -pthread"/> + + <fail message="Missing FMOD path environment property" unless="env.FMOD"/> <target name="clean"> <delete> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |