summaryrefslogtreecommitdiffstats
path: root/build-aux
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2008-12-07 14:58:46 +0000
committerBruno Haible <bruno@clisp.org>2009-06-23 12:15:56 +0200
commitc23fb7cf3a00b038c20667ec7da8e17fbf46f0f7 (patch)
tree44c667600b00ba56413cac4373872609677e8f46 /build-aux
parent2dfecd86d41342c5b33b9912858be24e4be2046d (diff)
downloadexternal_gettext-c23fb7cf3a00b038c20667ec7da8e17fbf46f0f7.zip
external_gettext-c23fb7cf3a00b038c20667ec7da8e17fbf46f0f7.tar.gz
external_gettext-c23fb7cf3a00b038c20667ec7da8e17fbf46f0f7.tar.bz2
Make it work with automake-1.10.2.
Diffstat (limited to 'build-aux')
-rwxr-xr-xbuild-aux/fixaclocal6
1 files changed, 4 insertions, 2 deletions
diff --git a/build-aux/fixaclocal b/build-aux/fixaclocal
index 9d62bff..10ff8e4 100755
--- a/build-aux/fixaclocal
+++ b/build-aux/fixaclocal
@@ -21,8 +21,10 @@
result=$?
if test $result = 0 && test -f aclocal.m4; then
# Remove the block of 4 lines starting with 'm4_if(m4_PACKAGE_VERSION'
- # and the block of 5 lines starting with 'm4_if(AC_AUTOCONF_VERSION'.
- sed -e '/m4_if(m4_PACKAGE_VERSION/{N;N;N;d}' -e '/m4_if(AC_AUTOCONF_VERSION/{N;N;N;N;d}' < aclocal.m4 > aclocal.m4.tmp
+ # and the block of 5 lines starting with 'm4_if(AC_AUTOCONF_VERSION'
+ # (automake <= 1.10.1) or with 'm4_if(m4_defn([AC_AUTOCONF_VERSION])'
+ # (automake >= 1.10.2).
+ sed -e '/m4_if(m4_PACKAGE_VERSION/{N;N;N;d}' -e '/m4_if(AC_AUTOCONF_VERSION/{N;N;N;N;d}' -e '/m4_if(m4_defn(\[AC_AUTOCONF_VERSION\])/{N;N;N;N;d}' < aclocal.m4 > aclocal.m4.tmp
if cmp aclocal.m4 aclocal.m4.tmp > /dev/null; then
rm -f aclocal.m4.tmp
else