From d33f4c91f24ed9bb8baf09d23525ff045e2055ea Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Tue, 3 Mar 2015 10:59:11 +0100 Subject: [PATCH] Allow automake 1.15. --- INSTALL | 2 +- autogen.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/INSTALL b/INSTALL index 4d5c0e88e4..a3d4914b29 100644 --- 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. diff --git a/autogen.sh b/autogen.sh index 750d7a7bc5..64be9af984 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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