enable automake version 1.14

This commit is contained in:
Stephan Witt 2013-07-26 13:04:32 +02:00
parent 3d36751849
commit 16cdf70d0c
3 changed files with 4 additions and 4 deletions

2
.gitignore vendored
View File

@ -15,4 +15,4 @@ lyx.1
stamp-h1 stamp-h1
*.old *.old
*.bak *.bak
config/compile

View File

@ -16,12 +16,12 @@ test "$automake_version" != "" && {
} }
case $automake_version in case $automake_version in
*' '1.[8-9]*|*' '1.1[0123]*) *' '1.[8-9]*|*' '1.1[01234]*)
;; ;;
*) *)
echo "This automake version is not supported by LyX." echo "This automake version is not supported by LyX."
echo "LyX only supports automake 1.8 to 1.13." echo "LyX only supports automake 1.8 to 1.14."
exit 1 exit 1
;; ;;
esac esac

View File

@ -27,7 +27,7 @@ fi
AM_MAINTAINER_MODE AM_MAINTAINER_MODE
save_PACKAGE=$PACKAGE save_PACKAGE=$PACKAGE
AM_INIT_AUTOMAKE([foreign dist-bzip2 no-define 1.8]) AM_INIT_AUTOMAKE([foreign dist-bzip2 no-define 1.8 subdir-objects])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
PACKAGE=$save_PACKAGE PACKAGE=$save_PACKAGE