diff options
author | Sven Gothel <[email protected]> | 2012-03-10 07:07:35 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-03-10 07:07:35 +0100 |
commit | 00d520eae5b8a6dc455690f2e371d074b7da3145 (patch) | |
tree | 7db25a04ee04ee0b10519c90a3e27b8510d98afa | |
parent | 4a8f62755d5970a1fe4d3780bed51e4a6431ed30 (diff) |
native jar packaging: don't fail if platform OpenAL lib is n/a
-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 1fbd583..9cac7f5 100755 --- a/make/build.xml +++ b/make/build.xml @@ -387,7 +387,7 @@ <fileset dir="../${rootrel.build}/obj"> <include name="*joal.${native.library.suffix}" /> </fileset> - <fileset dir="lib/${os.and.arch}"> + <fileset dir="lib/${os.and.arch}" erroronmissingdir="false"> <include name="*.${native.library.suffix}" /> </fileset> </jar> |