diff options
author | Sven Gothel <[email protected]> | 2012-11-15 21:30:41 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-11-15 21:30:41 +0100 |
commit | 6d807f8e71edd8cf97daad23e3afc619bd1d429c (patch) | |
tree | 409c049461758670a6e388fd46359140689aae7c /make | |
parent | 0c36d86abd569aca4df2d31031634e15d338c4b0 (diff) |
Fix regression of commit 2420f0e3352a46c8deb9c5827f78add65cb9d1a4: cmake is not avail per default on all platforms yet.
Diffstat (limited to 'make')
-rwxr-xr-x | make/build.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml index f06f315..458fd69 100755 --- a/make/build.xml +++ b/make/build.xml @@ -401,7 +401,7 @@ <target name="c.build.openal.soft" depends="init, gluegen.cpptasks.detect.os, gluegen.cpptasks.setup.compiler"> <mkdir dir="${build}/openal-soft" /> - <exec dir="${build}/openal-soft" executable="cmake"> + <exec dir="${build}/openal-soft" executable="cmake" logError="true" failonerror="false" failifexecutionfails="false"> <arg value="../../../openal-soft"/> </exec> <exec dir="${build}/openal-soft" executable="make" /> |