From 4eeabbeec3b4f452b240fe277ce5ef01b397bece Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Mon, 25 May 2009 23:27:47 -0600 Subject: [PATCH] point javac to the right output directory when building extra tests --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index a6341c1630..b9a8f15078 100644 --- a/makefile +++ b/makefile @@ -412,7 +412,7 @@ $(test-dep): $(test-sources) $(test-extra-dep): $(test-extra-sources) @echo "compiling extra test classes" @mkdir -p $(dir $(@)) - $(javac) -d $(test) -bootclasspath $(classpath-build) \ + $(javac) -d $(test-build) -bootclasspath $(classpath-build) \ $(shell $(MAKE) -s --no-print-directory $(test-extra-classes)) @touch $(@)