summaryrefslogtreecommitdiff
path: root/qpid/gentools/build.xml
diff options
context:
space:
mode:
authorRobert Godfrey <rgodfrey@apache.org>2007-04-12 14:42:34 +0000
committerRobert Godfrey <rgodfrey@apache.org>2007-04-12 14:42:34 +0000
commitba393856e0dfef0ad247e7d8ac7e0ad13bf5bd3e (patch)
treee242e0129bf2befd689129b6267a5d961878056a /qpid/gentools/build.xml
parentad4a4b90ba3d82a8188d81dc54578e65d3e050f9 (diff)
downloadqpid-python-ba393856e0dfef0ad247e7d8ac7e0ad13bf5bd3e.tar.gz
Unbreaking trunk due to erroneous commit
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@527961 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/gentools/build.xml')
-rw-r--r--qpid/gentools/build.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/qpid/gentools/build.xml b/qpid/gentools/build.xml
index d35790f714..1364566f3a 100644
--- a/qpid/gentools/build.xml
+++ b/qpid/gentools/build.xml
@@ -22,7 +22,13 @@
<property name="src" location="src" />
<target name="compile">
- <javac srcdir="${src}" source="1.5" fork="true" debug="on"/>
+ <javac srcdir="${src}" source="1.5" fork="true" debug="on">
+ <classpath>
+ <fileset dir="${src}/../lib">
+ <include name="**/*.jar"/>
+ </fileset>
+ </classpath>
+ </javac>
</target>
<target name="clean">