diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-05-24 01:25:19 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-05-24 01:29:31 +0200 |
commit | 6613b274c8ca9832e5a73e0e01f155ee3bac2070 (patch) | |
tree | 8c61d369dfc916e95cafe9554e1075b5f7205539 /cvs.sh | |
parent | 81b32be6f391c7ff31502426a8642049e898389e (diff) | |
download | admin-3.5.13.2.tar.gz admin-3.5.13.2.zip |
Fix build with automake 1.13v3.5.13.2
(cherry picked from commit 65ecce459d54e772303052de50d08557ba9cc7ed)
Diffstat (limited to 'cvs.sh')
-rw-r--r-- | cvs.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -63,7 +63,7 @@ esac AUTOMAKE_STRING=`$AUTOMAKE --version | head -n 1` required_automake_version="1.6.1 or newer" case $AUTOMAKE_STRING in - automake*1.6.* | automake*1.7* | automake*1.8* | automake*1.9* | automake*1.10* | automake*1.11* | automake*1.12*) + automake*1.6.* | automake*1.7* | automake*1.8* | automake*1.9* | automake*1.10* | automake*1.11* | automake*1.12* | automake*1.13* ) echo "*** $AUTOMAKE_STRING found." UNSERMAKE=no ;; @@ -123,7 +123,7 @@ $ACLOCAL $ACLOCALFLAGS || exit 1 echo "*** Creating configure" call_and_fix_autoconf -if egrep "^AM_CONFIG_HEADER" configure.in >/dev/null 2>&1; then +if egrep "^A[MC]_CONFIG_HEADER" configure.in >/dev/null 2>&1; then echo "*** Creating config.h template" $AUTOHEADER || exit 1 touch config.h.in @@ -179,7 +179,7 @@ if test -r configure.in.in; then fi fi $ACLOCAL $ACLOCALFLAGS -if egrep "^AM_CONFIG_HEADER" configure.in >/dev/null 2>&1; then +if egrep "^A[MC]_CONFIG_HEADER" configure.in >/dev/null 2>&1; then echo "*** Creating config.h template" $AUTOHEADER || exit 1 touch config.h.in |