point javac to the right output directory when building extra tests

This commit is contained in:
Joel Dice 2009-05-25 23:27:47 -06:00
parent 31eb75a736
commit 4eeabbeec3

View File

@ -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 $(@)