Update to accept automake 1.16

(cherry picked from commit 61db4af82d)
This commit is contained in:
Joel A. Kulesza 2018-03-18 17:43:25 -06:00 committed by Jean-Marc Lasgouttes
parent 25a176ee71
commit 3abfd72b27
3 changed files with 5 additions and 3 deletions

View File

@ -37,7 +37,7 @@ Note for Git checkouts
----------------------------- -----------------------------
If you have checked this out from Git, you need to have: If you have checked this out from Git, you need to have:
* automake (supported versions are 1.14--1.15) * automake (supported versions are 1.14--1.16)
* autoconf (supported versions are 2.65--2.69) * autoconf (supported versions are 2.65--2.69)
Then type "./autogen.sh" to build the needed configuration Then type "./autogen.sh" to build the needed configuration
files and proceed as stated above/below. files and proceed as stated above/below.

View File

@ -16,11 +16,11 @@ test "$automake_version" != "" && {
} }
case $automake_version in case $automake_version in
*' '1.1[45]*) *' '1.1[456]*)
;; ;;
*) *)
echo "This automake version is not supported by LyX." echo "This automake version is not supported by LyX."
echo "LyX only supports automake 1.14 to 1.15." echo "LyX only supports automake 1.14 through 1.16."
exit 1 exit 1
;; ;;
esac esac

View File

@ -95,3 +95,5 @@ What's new
* BUILD/INSTALLATION * BUILD/INSTALLATION
- Add support for automake 1.16.