summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2007-10-12 21:37:42 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2007-10-12 21:37:42 +0000
commit55d11b5361854fd1f3aea514b25f76d85abe3153 (patch)
tree8683ba3ecad72361dde3889bcb02d90a79213b50 /lib
parent087c1673781a83274e25506da7f0502df9a89b09 (diff)
downloadclasspath-55d11b5361854fd1f3aea514b25f76d85abe3153.tar.gz
2007-10-12 Andrew John Hughes <gnu_andrew@member.fsf.org>
PR classpath/33622: * lib/Makefile.am: Use JAVAC_ARGS variable. * m4/acinclude.m4: Check javac is 1.5 compliant and whether it supports -J.
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 d147f5bd8..d76548cd5 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -12,7 +12,7 @@ if FOUND_ECJ
JCOMPILER = $(ECJ) -1.5 -warn:-deprecation,serial,typeHiding,unchecked,unused,varargsCast -proceedOnError -bootclasspath '' -classpath $(compile_classpath) -d . @classes
else
if FOUND_JAVAC
-JCOMPILER = $(JAVAC) -J-Xmx512M -bootclasspath '' -classpath $(compile_classpath) -d . @classes
+JCOMPILER = $(JAVAC) $(JAVAC_OPTS) -bootclasspath '' -classpath $(compile_classpath) -d . @classes
#else
#if FOUND_GCJ
## This should never be used when gcj is the compiler.