This is the mail archive of the kawa@sources.redhat.com mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: 2 patches


Jim White wrote:
Thanks; I checked in this patch.

Index: build.xml
===================================================================
RCS file: /cvs/kawa/kawa/build.xml,v
retrieving revision 1.10
diff -u -r1.10 build.xml
--- build.xml 26 Jun 2002 21:36:00 -0000 1.10
+++ build.xml 9 Aug 2002 10:11:24 -0000
@@ -579,6 +579,17 @@
optimize="${optimize}" >
<include name="gnu/kawa/servlet/"/>
</javac>
+ <apply taskname="kawa" executable="java" + failonerror="true" parallel="true">
+ <!-- I don't quite get why the Java classpath has to be tacked on here, but it does. -->
+ <arg value="-classpath"/> <arg path="${build.classes}:${java.class.path}"/>
+ <arg value="kawa.repl"/>
+ <arg value="-d"/> <arg path="${build.classes}"/>
+ <arg line="-P gnu.kawa.slib. --module-static -C"/>
+ <fileset dir="${src.dir}/gnu/kawa/slib"> + <include name="HTTP.scm"/>
+ </fileset>
+ </apply>
</target>
<fileset id="jemacs-lang-scm" dir="${src.dir}/gnu/jemacs/lang">

--
	--Per Bothner
per@bothner.com   http://www.bothner.com/per/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]