Allow automake 1.15.

This commit is contained in:
Jean-Marc Lasgouttes 2015-03-03 10:59:11 +01:00
parent c0041e7fa5
commit d33f4c91f2
2 changed files with 3 additions and 3 deletions

View File

@ -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.

View File

@ -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