diff options
author | Bruno Haible <bruno@clisp.org> | 2006-10-23 18:12:36 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:14:12 +0200 |
commit | e1c0750638096b4962987760137a4267f7418cc5 (patch) | |
tree | fec7d61c4dfb7b29ed48786a1cdb1bdfa6215ff0 | |
parent | f076b7843ffde76b6314825435c077572a670560 (diff) | |
download | external_gettext-e1c0750638096b4962987760137a4267f7418cc5.zip external_gettext-e1c0750638096b4962987760137a4267f7418cc5.tar.gz external_gettext-e1c0750638096b4962987760137a4267f7418cc5.tar.bz2 |
Fix for automake-1.10.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | m4/fixautomake.m4 | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2006-10-23 Bruno Haible <bruno@clisp.org> + + * m4/fixautomake.m4 (FIX_MAKEFILE_TOPDIR_DISTRIB): Make it work with + automake-1.10 too. + 2006-10-20 Bruno Haible <bruno@clisp.org> * autogen.sh: Don't remove gettext-tools/libgettextpo/gnulib-m4. diff --git a/m4/fixautomake.m4 b/m4/fixautomake.m4 index 60c4803..7a40155 100644 --- a/m4/fixautomake.m4 +++ b/m4/fixautomake.m4 @@ -1,4 +1,4 @@ -# fixautomake.m4 serial 5 (gettext-0.15.1) +# fixautomake.m4 serial 6 (gettext-0.15.1) dnl Copyright (C) 2002-2003, 2006 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General @@ -20,11 +20,11 @@ AC_DEFUN([FIX_MAKEFILE_DISTRIB], [ mv $ac_file.tmp $ac_file ]) -dnl Fix an automake-1.9 bug: the distrib rule is not extensible. +dnl Fix an automake-1.9-1.10 bug: the distrib rule is not extensible. dnl Insert a invocation of the distdir1 target inside the distdir commands, dnl after $(distdir) has been erased and re-created. AC_DEFUN([FIX_MAKEFILE_TOPDIR_DISTRIB], [ - sed_script='/^ mkdir \$(distdir)$/{a\ + sed_script='/mkdir \$(distdir)$/{a\ \ $(MAKE) distdir1 }' sed -e "$sed_script" < $ac_file > $ac_file.tmp |