diff options
Diffstat (limited to 'make/build.xml')
-rw-r--r-- | make/build.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/make/build.xml b/make/build.xml index d6d47d617..af5c27f21 100644 --- a/make/build.xml +++ b/make/build.xml @@ -1279,7 +1279,7 @@ <include name="${rootrel.generated.c.cg}/*.c"/> </patternset> - <echo message="Compiling ${output.lib.name}" /> + <echo message="Compiling @{output.lib.name}" /> <cc outtype="shared" objdir="${obj.jogl}" @@ -1330,15 +1330,15 @@ <!-- FIXME: this is a hack; the cpptask should have an option to change the suffix or at least understand the override from dylib to jnilib --> <antcall target="rename.dylib" inheritRefs="true"> - <param name="src" value="${build}/obj/lib${output.lib.name}.dylib" /> - <param name="dest" value="${build}/obj/lib${output.lib.name}.jnilib" /> + <param name="src" value="${build}/obj/lib@{output.lib.name}.dylib" /> + <param name="dest" value="${build}/obj/lib@{output.lib.name}.jnilib" /> </antcall> <!-- FIXME: this is a hack; the cpptask should have an option to change the suffix or at least understand the override from dylib to jnilib --> <antcall target="rename.mingw.dll" inheritRefs="true"> - <param name="src" value="${build}/lib${output.lib.name}.so" /> - <param name="dest" value="${build}/${output.lib.name}.dll" /> + <param name="src" value="${build}/obj/lib@{output.lib.name}.so" /> + <param name="dest" value="${build}/obj/@{output.lib.name}.dll" /> </antcall> </sequential> </macrodef> |