diff options
author | Frederic Peters <fpeters@entrouvert.com> | 2008-02-17 13:50:08 +0000 |
---|---|---|
committer | Frederic Peters <fpeters@entrouvert.com> | 2008-02-17 13:50:08 +0000 |
commit | 5b0410c247e2faeb97026c472d0df115d8fa1138 (patch) | |
tree | 2346e50d7026a5a0c5e792b13f088d7bf2d5a391 | |
parent | 9755fdd10810c6c8df1383bb4dc6ed1522a279d6 (diff) | |
download | lasso-5b0410c247e2faeb97026c472d0df115d8fa1138.tar.gz lasso-5b0410c247e2faeb97026c472d0df115d8fa1138.tar.xz lasso-5b0410c247e2faeb97026c472d0df115d8fa1138.zip |
fixed gcj version regex
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index afb4ac22..09e8a48f 100644 --- a/configure.ac +++ b/configure.ac @@ -255,7 +255,7 @@ fi dnl If the java compiler is the GNU Java Compiler. if test "x$JAVAC" = "xgcj"; then changequote(<<, >>)dnl - JAVA_VERSION=`$JAVAC --version 2>&1 | $SED -ne 's/gcj (GCC) \([^"]*\) (.*/\1/p' 2>/dev/null` + JAVA_VERSION=`$JAVAC --version 2>&1 | $SED -ne 's/gcj.*\([0-9]\.[0-9]\.[0-9]\).*/\1/p' 2>/dev/null` changequote([, ])dnl dnl Byte-compiled .class file |