From: Bruno Haible Date: Fri, 11 Jan 2002 14:48:39 +0000 (+0000) Subject: Work around another automake bug. X-Git-Tag: v0.11~77 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e9b5b0e481124497fb9fdcd2d36db9302908e029;p=thirdparty%2Fgettext.git Work around another automake bug. --- diff --git a/ChangeLog b/ChangeLog index 5c0c9228f..47986c46a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2002-01-11 Bruno Haible + + * configure.in: Change version number to 0.11-pre5. + +2002-01-11 Bruno Haible + + * configure.in: Postprocess doc/Makefile a second time. + 2002-01-10 Bruno Haible * acconfig.h [OS/2]: Include intl/os2compat.h, not os2/os2compat.h. @@ -19,8 +27,6 @@ 2002-01-04 Bruno Haible - * configure.in: Change version number to 0.11-pre5. - * config.guess, config.sub: Update to GNU version 2002-01-02. 2001-12-17 Bruno Haible diff --git a/configure.in b/configure.in index e720f6422..1ae4dd0b8 100644 --- a/configure.in +++ b/configure.in @@ -168,6 +168,11 @@ AC_OUTPUT([Makefile \ sed -e 's,^#distdir:,distdir:,' < $m > $m.tmp mv $m.tmp $m done + dnl Fix an automake-1.5 bug: all info files are erased by "make". + for m in doc/Makefile; do + sed -e '/cd \$(srcdir) && rm -f /d' < $m > $m.tmp + mv $m.tmp $m + done dnl Fix permissions of misc/gettextize. chmod a+x misc/gettextize ])