rpms/joni/EL-5 joni-include-objectweb-asm.patch,NONE,1.1

Conrad Meyer konradm at fedoraproject.org
Tue Sep 2 20:16:41 UTC 2008


Author: konradm

Update of /cvs/pkgs/rpms/joni/EL-5
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24433

Added Files:
	joni-include-objectweb-asm.patch 
Log Message:
Add objectweb-asm dependency/patch.

joni-include-objectweb-asm.patch:

--- NEW FILE joni-include-objectweb-asm.patch ---
--- build.xml.orig	2008-09-02 09:16:39.000000000 -0700
+++ build.xml	2008-09-02 09:26:49.000000000 -0700
@@ -5,20 +5,25 @@
     <property name="ant.build.javac.source" value="1.5" />
     <property name="src.dir" value="src" />
     <property name="bin.dir" value="target/classes" />
     <property name="dist.dir" value="target" />
     <property name="jar.name" value="joni.jar" />
+    <path id="lib.dir">
+	<pathelement location="build_lib/objectweb-asm_asm.jar" />
+    </path>
 
     <target name="clean">
         <delete dir="${bin.dir}" />
         <delete dir="${dist.dir}" />
 
     </target>
 
     <target name="compile">
         <mkdir dir="${bin.dir}" />
-        <javac srcdir="${src.dir}" destdir="${bin.dir}"/>
+	<javac srcdir="${src.dir}" destdir="${bin.dir}">
+	    <classpath refid="lib.dir" />
+        </javac>
     </target>
     
     <target name="build" depends="compile">
         <mkdir dir="${dist.dir}" />
 




More information about the fedora-extras-commits mailing list