Patch to restore the ability to build Avalon from source:
cvs server: Diffing .
Index: build.xml
===================================================================
RCS file: /products/cvs/master/framework/build.xml,v
retrieving revision 1.123
diff -u -r1.123 build.xml
--- build.xml 2001/02/20 02:05:32 1.123
+++ build.xml 2001/02/20 16:09:39
@@ -242,7 +242,27 @@
Creates the clutil.jar file
===================================================================
-->
- <target name="jar-clutil" depends="compile">
+ <target name="compile-clutil" depends="prepare-src,prepare-lib">
+
+ <mkdir dir="${build.classes}"/>
+
+ <javac srcdir="${java.dir}"
+ destdir="${build.classes}"
+ debug="${debug}"
+ optimize="${optimize}"
+ deprecation="${deprecation}">
+ <classpath>
+ <pathelement location="${lib.dir}/log.jar"/>
+ <fileset dir="${build.lib}">
+ <include name="*.jar" />
+ </fileset>
+ </classpath>
+ <src path="${build.src}" />
+ <include name="org/apache/avalon/util/cli/*" />
+ </javac>
+ </target>
+
+ <target name="jar-clutil" depends="compile-clutil">
<jar jarfile="${build.lib}/clutil.jar" basedir="${build.classes}">
<include name="org/apache/avalon/util/cli/*" />
</jar>
- Sam Ruby
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]