Fix native library compilation target to remove absolute paths

This commit is contained in:
Cameron Gutman
2014-01-12 17:16:22 -05:00
parent e764a720a9
commit 36638895b8
+2 -2
View File
@@ -32,8 +32,8 @@
<target name="build" depends="compile-native, compile-java"/> <target name="build" depends="compile-native, compile-java"/>
<target name="compile-native"> <target name="compile-native">
<exec executable="./build.sh" dir="/home/iwan/Development/limelight/limelight-pi/jni/nv_omx_dec/"/> <exec executable="./build.sh" dir="${libs.omx.dir}"/>
<exec executable="./build.sh" dir="/home/iwan/Development/limelight/limelight-pi/jni/nv_opus_dec/"/> <exec executable="./build.sh" dir="${libs.opus.dir}"/>
</target> </target>
<target name="compile-java" depends="init"> <target name="compile-java" depends="init">