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]

patch to build.xml


build.xml does not currently preprocess 'gnu.xquery.util.Focus.java.in'.
i have attached a patch that addresses this.


Index: build.xml
===================================================================
RCS file: /cvs/kawa/kawa/build.xml,v
retrieving revision 1.5
diff -u -r1.5 build.xml
--- build.xml	2002/02/16 20:30:31	1.5
+++ build.xml	2002/03/26 19:03:01
@@ -88,6 +88,7 @@
      <include name="gnu/xml/QName.java"/>
      <include name="gnu/xml/XMLParser.java"/>
      <include name="gnu/xml/XMLParserByte.java"/>
+     <include name="gnu/xquery/util/Focus.java"/>
      <include name="kawa/Version.java"/>
   </fileset>
   
@@ -371,6 +372,16 @@
       <filterset refid="filter-with-references-${with-references}"/>
       <linestripperset refid="strip-with-references-${with-references}"/>
     </xcopy>
+
+    <xcopy todir="${build.preprocessed}/gnu/xquery/util" 
+           overwrite="${preprocess.overwrite}">
+      <fileset dir="${src.dir}/gnu/xquery/util" />
+      <mapper type="glob" from="*Focus.java.in" to="*Focus.java"/>
+      <filterset refid="filter-do-not-edit"/>
+      <filterset refid="filter-with-references-${with-references}"/>
+      <linestripperset refid="strip-with-references-${with-references}"/>
+    </xcopy>
+
   </target>
   
   <patternset id="with-awt-true"/>

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