Enable the use of (1.5 <= automake <= 1.9)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9676 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2005-02-24 08:49:34 +00:00
parent 680c476b49
commit 7b5cde4ee9
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2005-02-24 Angus Leeming <leeming@lyx.org>
* autogen.sh: enable the use of (1.5 <= automake <= 1.9).
2005-02-23 Angus Leeming <leeming@lyx.org> 2005-02-23 Angus Leeming <leeming@lyx.org>
* autogen.sh: test for automake >= 1.5 and for gettext >= 0.12. * autogen.sh: test for automake >= 1.5 and for gettext >= 0.12.

View File

@ -37,12 +37,12 @@ test "$automake_version" != "" && {
} }
case $automake_version in case $automake_version in
*' '1.[5-7]*) *' '1.[5-9]*)
;; ;;
*) *)
echo "This automake version is not supported by LyX." echo "This automake version is not supported by LyX."
echo "LyX only supports automake 1.[5-7]." echo "LyX only supports automake 1.[5-9]."
exit exit
;; ;;
esac esac