]> git.lyx.org Git - lyx.git/commitdiff
Allow automake 1.15.
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Tue, 3 Mar 2015 09:59:11 +0000 (10:59 +0100)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Tue, 3 Mar 2015 09:59:11 +0000 (10:59 +0100)
INSTALL
autogen.sh

diff --git a/INSTALL b/INSTALL
index 4d5c0e88e4e154576f8794df083a61fa12da99c6..a3d4914b29be6e1a40f9f2ec974b7d632471c2c6 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -36,7 +36,7 @@ Note for Git checkouts
 -----------------------------
 
 If you have checked this out from Git, you need to have:
-* automake (supported versions are 1.8--1.14)
+* automake (supported versions are 1.8--1.15)
 * autoconf (supported versions are 2.60--2.69)
 Then type "./autogen.sh" to build the needed configuration
 files and proceed as stated above/below.
index 750d7a7bc590057c1c66cc776786476cbc978982..64be9af984612442f7f222e18b21e369582ac03d 100755 (executable)
@@ -16,12 +16,12 @@ test "$automake_version" != "" && {
 }
 
 case $automake_version in
-    *' '1.[8-9]*|*' '1.1[01234]*)
+    *' '1.[8-9]*|*' '1.1[012345]*)
        ;;
     *)
 
        echo "This automake version is not supported by LyX."
-       echo "LyX only supports automake 1.8 to 1.14."
+       echo "LyX only supports automake 1.8 to 1.15."
        exit 1
        ;;
 esac