From 97c7db2e15f8d87f0a26fb46b8b22411f722c456 Mon Sep 17 00:00:00 2001
From: Bruce Momjian <bruce@momjian.us>
Date: Fri, 25 May 2001 16:29:17 +0000
Subject: [PATCH] Mention failure of ANT to delete directories on clean.

---
 src/interfaces/jdbc/build.xml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/interfaces/jdbc/build.xml b/src/interfaces/jdbc/build.xml
index 5cac94a918b..acc48a60100 100644
--- a/src/interfaces/jdbc/build.xml
+++ b/src/interfaces/jdbc/build.xml
@@ -3,7 +3,7 @@
   build file to allow ant (http://jakarta.apache.org/ant/) to be used
   to build the PostgreSQL JDBC Driver.
 
-  $Id: build.xml,v 1.14 2001/05/23 20:54:12 momjian Exp $
+  $Id: build.xml,v 1.15 2001/05/25 16:29:17 momjian Exp $
 
 -->
 
@@ -83,6 +83,10 @@
 
   <!-- This target removes any class files from the build directory -->
   <target name="clean">
+    <!-- 
+	This should be just 'delete', but ant 1.3 fails.  
+	This code doesn't delete the directories.  bjm 2001-05-25 
+    -->
     <delete>
 	<fileset dir="${dest}" />
     	<fileset dir="${jars}" />
-- 
GitLab