Skip to content

Commit

Permalink
Fix ant build script.
Browse files Browse the repository at this point in the history
Apparently the old version failed with older ants or older Java versions.
  • Loading branch information
joto committed Mar 15, 2014
1 parent ed1101b commit 5e82288
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@
<arg value="./build.sh"/>
</exec>
<javac includeantruntime="false" destdir="${build.dir}">
<src>
<dirset dir="${src.dir}"/>
<dirset dir="${src.generated.dir}"/>
</src>
<src path="${src.dir}"/>
<src path="${src.generated.dir}"/>
<classpath>
<fileset file="/usr/share/java/protobuf.jar"/>
</classpath>
Expand Down

0 comments on commit 5e82288

Please sign in to comment.