Description: Remove reference to convenience copies and set proper classpath
 third-party jar files were bundled in lib/, but this directory was removed
 and its absence caused errors when running ant. This patch removes the
 reference to this excluded directory and points the classpath to find the
 third-party libraries in /usr/share/java
Author: Afif Elghraoui <afif@ghraoui.name>
Forwarded: not-needed
Last-Update: 2015-09-12
--- mhap.orig/build.xml
+++ mhap/build.xml
@@ -46,7 +46,7 @@
     <property name="dist.home"               value="${build.home}/dist"/>
 
     <!-- The directory for library containing the dependency jar files -->
-    <property name="lib.dir"               value="lib"/>
+    <property name="lib.dir"               value=""/>
 
     <!-- The directory that contains the binary files -->
     <property name="bin.dir"               value="bin"/>
@@ -82,7 +82,7 @@
   
    <!-- Generate path for binary distrubtion dependencies -->
    <path id="compile.classpath">
-     <fileset dir="${lib.dir}" includes="**/*.jar"/>
+     <fileset dir="/usr/share/java" includes="commons-compress.jar fastutil.jar guava.jar jaligner.jar"/>
      <pathelement location="${build.home}/classes"/>
    </path>
 
@@ -374,4 +374,4 @@
     
   </target>
 
-</project>
\ No newline at end of file
+</project>
