From 9e2bd4aacd65eecc407ba76ed68ed4f749dc9151 Mon Sep 17 00:00:00 2001 From: str4d <str4d@mail.i2p> Date: Fri, 8 Sep 2017 11:28:19 +0000 Subject: [PATCH] Fix bench.jarUpToDate --- core/java/build.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/java/build.xml b/core/java/build.xml index 4703514db1..586cde3fed 100644 --- a/core/java/build.xml +++ b/core/java/build.xml @@ -438,7 +438,8 @@ <target name="bench.jarUpToDate"> <uptodate property="bench.jar.uptodate" targetfile="build/i2p-benchmarks.jar" > - <srcfiles dir= "." includes="build/obj_bench/**/*.class" /> + <srcfiles dir= "build/obj" includes="**/*.class" /> + <srcfiles dir= "build/obj_bench" includes="**/*.class" /> </uptodate> </target> -- GitLab