summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2007-11-04 01:56:16 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2007-11-04 01:56:16 +0000
commit8404f1c5aedcf7023e4f1ad64b90bfec6e7a4975 (patch)
tree740a75a04b52284bf9752bce11afe351c61f3c1f /lib
parent7da7e85b15ca3ea128af6437033f443b881779ad (diff)
downloadclasspath-8404f1c5aedcf7023e4f1ad64b90bfec6e7a4975.tar.gz
2007-11-04 Andrew John Hughes <gnu_andrew@member.fsf.org>
* gnu/java/lang/MainThread.java: Fix varargs warning. * lib/Makefile.am: Remove restriction on ecj printing varargs warnings.
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
index d76548cd5..390d3c34e 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -9,7 +9,7 @@ compile_classpath = $(vm_classes):$(top_srcdir):$(top_srcdir)/external/w3c_dom:$
# handling source to bytecode compiler programs like gcj, jikes and kjc
if FOUND_ECJ
-JCOMPILER = $(ECJ) -1.5 -warn:-deprecation,serial,typeHiding,unchecked,unused,varargsCast -proceedOnError -bootclasspath '' -classpath $(compile_classpath) -d . @classes
+JCOMPILER = $(ECJ) -1.5 -warn:-deprecation,serial,typeHiding,unchecked,unused -proceedOnError -bootclasspath '' -classpath $(compile_classpath) -d . @classes
else
if FOUND_JAVAC
JCOMPILER = $(JAVAC) $(JAVAC_OPTS) -bootclasspath '' -classpath $(compile_classpath) -d . @classes