fix missing lib directory error on clean

pull/2/merge
Chris Conlon 2015-04-06 09:08:16 -06:00
parent cf9eeb4e28
commit 786a7d3527
1 changed files with 3 additions and 3 deletions

View File

@ -3,10 +3,10 @@
<description> <description>
wolfCrypt JNI is a Java wrapper for the wolfCrypt lightweight crypto library. wolfCrypt JNI is a Java wrapper for the wolfCrypt lightweight crypto library.
This build file requires JUnit for running provided JUnit tests. JUnit can This build file requires JUnit for running provided JUnit tests. JUnit can
be downloaded from: http:/www.junit.org/ be downloaded from: http:/www.junit.org/
When running JUnit tests, this package will look for JUnit at: When running JUnit tests, this package will look for JUnit at:
$JUNIT_HOME/junit.jar $JUNIT_HOME/junit.jar
</description> </description>
@ -39,7 +39,7 @@
<delete dir="${build.dir}" /> <delete dir="${build.dir}" />
<delete dir="${examples.build.dir}" /> <delete dir="${examples.build.dir}" />
<delete dir="${reports.dir}" /> <delete dir="${reports.dir}" />
<delete> <delete failonerror="false">
<fileset dir="${lib.dir}" includes="wolfcrypt-jni.jar" /> <fileset dir="${lib.dir}" includes="wolfcrypt-jni.jar" />
</delete> </delete>
</target> </target>