From 65224faa7eb9daf991eee5a16b12ff63e68b75fc Mon Sep 17 00:00:00 2001 From: Jeff Wallace <jwallace@basistech.com> Date: Wed, 20 Nov 2013 15:24:37 -0500 Subject: [PATCH] Fixed typos in build-windows. --- bindings/java/build-windows.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bindings/java/build-windows.xml b/bindings/java/build-windows.xml index 5bc4a69fc..40c6a3839 100644 --- a/bindings/java/build-windows.xml +++ b/bindings/java/build-windows.xml @@ -34,16 +34,16 @@ </java> </target> - <target name="check-build-native" depends="check-build-32,check-build-64"/> + <target name="check-native-build" depends="check-build-32,check-build-64"/> - <target name="check-build-32" depends="checkLibDirs" if="win32.exists"> + <target name="check-build-32" if="win32.exists"> <uptodate property="native-up-to-date" srcfile="${basedir}/../../win32/Release/libtsk_jni.dll" targetfile="${x86}/win/libtsk_jni.dll"/> </target> - <target name="check-build-64" depends="checkLibDirs" if="win32.exists"> - <uptodate property="native-up-to-date" srcfile="${basedir}/../../win32/Release/libtsk_jni.dll" + <target name="check-build-64" if="win32.exists"> + <uptodate property="native-up-to-date" srcfile="${basedir}/../../win32/x64/Release/libtsk_jni.dll" targetfile="${amd64}/win/libtsk_jni.dll"/> </target> -- GitLab