Blob Blame History Raw
diff -ur yuicompressor-2.4.8.orig/build.xml yuicompressor-2.4.8/build.xml
--- yuicompressor-2.4.8.orig/build.xml	2013-05-15 09:23:58.000000000 +0200
+++ yuicompressor-2.4.8/build.xml	2017-12-20 11:55:21.853626638 +0100
@@ -36,20 +36,16 @@
 	           target="1.5"
                source="1.5">
             <classpath>
-                <pathelement location="${lib.dir}/jargs-1.0.jar"/>
-                <pathelement location="${lib.dir}/rhino-1.7R2.jar"/>
+                <pathelement location="${lib.dir}/jargs.jar"/>
             </classpath>
         </javac>
     </target>
 
     <target name="build.jar" depends="build.classes">
         <mkdir dir="${build.dir}/jar"/>
-        <!-- The order is important here. Rhino MUST be unjarred first!
-             (some of our own classes will override the Rhino classes) -->
-        <unjar src="${lib.dir}/jargs-1.0.jar" dest="${build.dir}/jar"/>
-        <unjar src="${lib.dir}/rhino-1.7R2.jar" dest="${build.dir}/jar"/>
         <copy todir="${build.dir}/jar">
             <fileset dir="${build.dir}/classes" includes="**/*.class"/>
+            <fileset dir="${src.dir}" includes="**/*.properties"/>
         </copy>
         <jar destfile="${build.dir}/${jar.name}" basedir="${build.dir}/jar">
             <manifest>