From: Bruno Haible Date: Mon, 24 Jul 2006 12:19:46 +0000 (+0000) Subject: Fix build problem on MacOS X with native 'sed'. X-Git-Tag: 0.16.x-branchpoint~327 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ab7bbb6a87e6d0fd96ad138f9a573d00cf7b11e;p=thirdparty%2Fgettext.git Fix build problem on MacOS X with native 'sed'. --- diff --git a/ChangeLog b/ChangeLog index b117315b7..e8ee98a13 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-07-24 Bruno Haible + + * m4/fixautomake.m4 (FIX_MAKEFILE_TOPDIR_DISTRIB): Protect the initial + tab with a backslash. Needed for MacOS X sed. + Reported by Denis Excoffier . + 2006-07-21 Bruno Haible * gettext-0.15 released. diff --git a/m4/fixautomake.m4 b/m4/fixautomake.m4 index 0de29e71f..60c480347 100644 --- a/m4/fixautomake.m4 +++ b/m4/fixautomake.m4 @@ -1,4 +1,4 @@ -# fixautomake.m4 serial 4 (gettext-0.15) +# fixautomake.m4 serial 5 (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 @@ -25,7 +25,7 @@ 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\ - $(MAKE) distdir1 +\ $(MAKE) distdir1 }' sed -e "$sed_script" < $ac_file > $ac_file.tmp mv $ac_file.tmp $ac_file