diff options
author | endolf <[email protected]> | 2003-08-05 08:14:46 +0000 |
---|---|---|
committer | endolf <[email protected]> | 2003-08-05 08:14:46 +0000 |
commit | 72e95c72d3c5ac43edc973bc41de394e956613ea (patch) | |
tree | 5c74bfc0b51d3d1681bce8b177e11297052c7546 /plugins/linux/build.xml | |
parent | 2b846524dbb5bfcc13499aa830960a0e1996f53d (diff) |
fixed ant clean fails on windows because the linux ant script can't find
the classes dir to delete
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/trunk@29 e343933a-64c8-49c5-92b1-88f2ce3e89e8
Diffstat (limited to 'plugins/linux/build.xml')
-rw-r--r-- | plugins/linux/build.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/linux/build.xml b/plugins/linux/build.xml index e4ec87b..5e9d572 100644 --- a/plugins/linux/build.xml +++ b/plugins/linux/build.xml @@ -46,7 +46,7 @@ </target> <target description="Clean all build products." name="clean"> - <delete> + <delete failonerror="no"> <fileset dir="classes"> <include name="**/*.class"/> </fileset> |