summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2008-01-14 14:36:33 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2008-01-14 14:36:33 +0000
commit5166c6047016606dfe6a4382d6118cce47637221 (patch)
treef5f8322e898dfd1cee4661fad8b53c396994a05e /m4
parent2df66d4ec2ea9101f94df3898d012b461ad916bf (diff)
downloadclasspath-5166c6047016606dfe6a4382d6118cce47637221.tar.gz
2008-01-14 Andrew John Hughes <gnu_andrew@member.fsf.org>
* m4/acinclude.m4: Remove bootclasspath option which fails with OpenJDK javac.
Diffstat (limited to 'm4')
-rw-r--r--m4/acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/acinclude.m4 b/m4/acinclude.m4
index 04905cf59..6165e9b84 100644
--- a/m4/acinclude.m4
+++ b/m4/acinclude.m4
@@ -462,7 +462,7 @@ public enum Colour {
RED, ORANGE, YELLOW, GREEN, BLUE, INDIGO, VIOLET;
}
EOF
- $JAVAC -sourcepath '' -bootclasspath '' Colour.java
+ $JAVAC -sourcepath '' Colour.java
javac_result=$?
if test "x$javac_result" = "x0"; then
AC_MSG_RESULT([yes])
@@ -470,7 +470,7 @@ EOF
AC_MSG_WARN([1.5 capable javac required])
fi
AC_MSG_CHECKING([whether javac supports -J])
- $JAVAC -J-Xmx512M -sourcepath '' -bootclasspath '' Colour.java
+ $JAVAC -J-Xmx512M -sourcepath '' Colour.java
javac_result=$?
if test "x$javac_result" = "x0"; then
AC_MSG_RESULT([yes])