robert burrell donkin <[EMAIL PROTECTED]> wrote:
> that sounds fine. please supply a patch against CVS HEAD (see
> http://jakarta.apache.org/commons/patches.html for more details).
done ;-)
> On Friday, May 30, 2003, at 09:13 AM, Arnaud Vandyck wrote:
>
> > Hi all,
> >
> > I am working on packaging fileupload to Debian. Because of some
> > requierments in Debian, I have to specify the CLASSPATH my self (or
> > tell to ant where it is). But I do not have any lib directory, so
> > ant craches. I've been obliged to comment the additionnal classpath
> > information in the javac task.
> >
> > My proposal is to change the reference to the lib directory to a
> > reference to a property so I can override it from my ant call.
> >
> > Thanks for your time,
-- Arnaud Vandyck, STE fi, ULg
Index: build.xml
===================================================================
RCS file: /home/cvspublic/jakarta-commons/fileupload/build.xml,v
retrieving revision 1.5
diff -u -r1.5 build.xml
--- build.xml 27 Oct 2002 18:47:51 -0000 1.5
+++ build.xml 1 Jun 2003 21:10:03 -0000
@@ -9,6 +9,7 @@
<property name="distdir" value="dist"></property>
<property name="javadocdir" value="target/docs/apidocs"></property>
<property name="final.name" value="commons-fileupload-1.0-dev"></property>
+ <property name="lib" value="lib"></property>
<!-- The test runner to execute -->
<property name="test.runner" value="junit.textui.TestRunner"/>
@@ -34,7 +35,7 @@
<pathelement location="src/java"></pathelement>
</src>
<classpath>
- <fileset dir="lib">
+ <fileset dir="${lib}">
<include name="*.jar"></include>
</fileset>
</classpath>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]