Restore concurrent build when Java agent is enabled
authorAlexandre Montplaisir <alexmonthy@efficios.com>
Mon, 27 Jul 2015 19:41:01 +0000 (15:41 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 29 Jul 2015 01:32:22 +0000 (21:32 -0400)
Add a missing target dependency in lttng-ust-agent-common, to
make sure it does not try to package the .jar before the classes
are actually compiled.

Signed-off-by: Alexandre Montplaisir <alexmonthy@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
liblttng-ust-java-agent/java/lttng-ust-agent-common/Makefile.am

index 287956ffe431e78c1ec15a356ca7d768dabf23e1..67f999d124abcee5c1c55ef9be4994a62f61e5ef 100644 (file)
@@ -28,7 +28,7 @@ jar_DATA = $(jarfile)
 
 classes = $(pkgpath)/*.class $(pkgpath)/client/*.class
 
-$(jarfile):
+$(jarfile): classnoinst.stamp
        $(JAR) cfm $(JARFLAGS) $@ $(jarfile_manifest) $(classes) && rm -f $(jarfile_symlink) && $(LN_S) $@ $(jarfile_symlink)
 
 all-local:
This page took 0.026329 seconds and 5 git commands to generate.