summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorBruce Momjian2001-05-17 03:22:53 +0000
committerBruce Momjian2001-05-17 03:22:53 +0000
commit1ef5c99c85835c2fab281e968719f6cc33c4e0e1 (patch)
treeb80c303ffd9062b116aa122351ac5198e0cf80b1 /contrib
parente7ffdd4475533276dec64e24de78a2b0d89c5934 (diff)
Fix 'make clean' with jdbc and ant by using filesets.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/retep/build.xml8
1 files changed, 5 insertions, 3 deletions
diff --git a/contrib/retep/build.xml b/contrib/retep/build.xml
index a5a168ea30a..9fbc0f61ac5 100644
--- a/contrib/retep/build.xml
+++ b/contrib/retep/build.xml
@@ -2,7 +2,7 @@
build file to build the donated retep tools packages
- $Id: build.xml,v 1.6 2001/05/16 17:09:25 momjian Exp $
+ $Id: build.xml,v 1.7 2001/05/17 03:22:53 momjian Exp $
-->
@@ -35,8 +35,10 @@
<!-- This target removes any class files from the build directory -->
<target name="clean">
- <delete dir="${dest}" />
- <delete dir="${jars}" />
+ <delete>
+ <fileset dir="${dest}" />
+ <fileset dir="${jars}" />
+ </delete>
</target>
<!-- Builds the XML Tools -->