]> git.lyx.org Git - lyx.git/commitdiff
Allow autoconf 2.69 and automake 1.12
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 11 May 2012 13:44:48 +0000 (15:44 +0200)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 11 May 2012 13:44:48 +0000 (15:44 +0200)
autogen.sh

index 5fc3d1bd57379b11c9d4525bc5620d0907fa5d76..8b4896024b64028a248752c78c19b6452e65362d 100755 (executable)
@@ -16,12 +16,12 @@ test "$automake_version" != "" && {
 }
 
 case $automake_version in
-    *' '1.[8-9]*|*' '1.1[01]*)
+    *' '1.[8-9]*|*' '1.1[012]*)
        ;;
     *)
 
        echo "This automake version is not supported by LyX."
-       echo "LyX only supports automake 1.8 to 1.11."
+       echo "LyX only supports automake 1.8 to 1.12."
        exit 1
        ;;
 esac
@@ -38,11 +38,11 @@ test "$autoversion" != "" && {
 
 
 case $autoversion in
-    *' '2.59[cd]|*' '2.60[ab]|*' '2.6[0-8])
+    *' '2.59[cd]|*' '2.60[ab]|*' '2.6[0-9])
        ;;
     *)
        echo "This autoconf version is not supported by LyX."
-       echo "LyX only supports autoconf 2.59c-2.68."
+       echo "LyX only supports autoconf 2.59c-2.69."
        exit 1
        ;;
 esac