14 lines
632 B
Diff
14 lines
632 B
Diff
|
diff --git a/configure.ac b/configure.ac
|
||
|
index aa44107f8e79..8a40119e9bc6 100644
|
||
|
--- a/configure.ac
|
||
|
+++ b/configure.ac
|
||
|
@@ -6824,7 +6824,7 @@ you must use the "--with-jdk-home" configure option explicitly])
|
||
|
JDK=sun
|
||
|
|
||
|
dnl Sun JDK specific tests
|
||
|
- _jdk=`$JAVAINTERPRETER -version 2>&1 | $AWK -F'"' '{ print \$2 }' | $SED s/[[-A-Za-z]]*//`
|
||
|
+ _jdk=`$JAVAINTERPRETER -version 2>&1 | $AWK -F'"' '{ print \$2 }' | $SED '/^$/d' | $SED s/[[-A-Za-z]]*//`
|
||
|
_jdk_ver=`echo "$_jdk" | $AWK -F. '{ print (($1 * 100) + $2) * 100 + $3;}'`
|
||
|
|
||
|
if test "$_jdk_ver" -lt 10600; then
|