summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2005-12-05 13:25:00 +0000
committerMark Wielaard <mark@klomp.org>2005-12-05 13:25:00 +0000
commitc64639f40ac9952714014448d964395db87c7e95 (patch)
tree36672d0042b5e1379b8a49aea877e483df607012 /lib
parent56d07c8bd97d213c79f9f42442c78cfbd884e6bc (diff)
downloadclasspath-c64639f40ac9952714014448d964395db87c7e95.tar.gz
Fixes bug classpath/25257
* lib/Makefile.am (FOUND_ECJ): Remove -warn typeHiding, unchecked and varargsCast flags for non-generic code.
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 9d44ef0c5..255e26e92 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -29,7 +29,7 @@ if FOUND_GCJX
JAVAC = $(GCJX) -encoding UTF-8 -classpath .:$(USER_CLASSLIB) -d . @classes
else
if FOUND_ECJ
-JAVAC = $(ECJ) -source 1.4 -encoding UTF-8 -warn:-deprecation,serial,typeHiding,unchecked,unused,varargsCast -proceedOnError -bootclasspath '' -classpath $(compile_classpath) -d . @classes
+JAVAC = $(ECJ) -source 1.4 -encoding UTF-8 -warn:-deprecation,serial,unused -proceedOnError -bootclasspath '' -classpath $(compile_classpath) -d . @classes
endif # FOUND_ECJ
endif # FOUND_GCJX
endif # FOUND_KJC