Skip to content
Snippets Groups Projects
Commit 226b7483 authored by smoss's avatar smoss
Browse files

modified: bindings/java/build-unix.xml

parent ad36c29f
Branches
Tags
No related merge requests found
......@@ -21,8 +21,18 @@
<sysproperty key="types" value="${test-types}"/>
</java>
</target>
<target name="depender">
<target name="depender"
depends="depender1"
unless="present">
<copy file="/usr/local/lib/libtsk_jni.la" tofile="/usr/lib/java/libtsk_jni.la"/>
<copy file="/usr/local/lib/libtsk_jni.0.0.0.dylib" tofile="/usr/lib/java/libtsk_jni.0.0.0.dylib"/>
<copy file="/usr/local/lib/libtsk_jni.0.dylib" tofile="/usr/lib/java/libtsk_jni.0.dylib"/>
<copy file="/usr/local/lib/libtsk_jni.a" tofile="/usr/lib/java/libtsk_jni.a"/>
<copy file="/usr/local/lib/libtsk_jni.dylib" tofile="/usr/lib/java/libtsk_jni.dylib"/>
</target>
<target name="depender1">
<available file="/usr/local/lib/libtsk_jni.a" property="pres"/>
<fail unless="pres" message="Run make install on The Sleuthkit."/>
<available file="/usr/lib/java/libtsk_jni.la" property="present"/>
</target>
</project>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment