[llvm-commits] CVS: llvm-java/test/Makefile.test
Alkis Evlogimenos
alkis at cs.uiuc.edu
Mon Jan 17 09:34:10 PST 2005
Changes in directory llvm-java/test:
Makefile.test updated: 1.34 -> 1.35
---
Log message:
Use -classpath instead of -cp as this works for Sun's javac as well.
---
Diffs of the changes: (+1 -1)
Index: llvm-java/test/Makefile.test
diff -u llvm-java/test/Makefile.test:1.34 llvm-java/test/Makefile.test:1.35
--- llvm-java/test/Makefile.test:1.34 Tue Jan 11 00:33:59 2005
+++ llvm-java/test/Makefile.test Mon Jan 17 11:33:59 2005
@@ -27,7 +27,7 @@
$(PREFIXED_CLASS_FILES): $(addsuffix .java,$(JAVA_TESTS))
$(Echo) Compiling $?
$(Verb)mkdir -p Output
- $(Verb)$(JAVAC) -cp Output -d Output $?
+ $(Verb)$(JAVAC) -classpath Output -d Output $?
$(Verb)touch $@
# Compiled bytecode for tests
More information about the llvm-commits
mailing list