diff options
author | Bruno Haible <bruno@clisp.org> | 2006-07-24 12:19:46 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:13:41 +0200 |
commit | 2ab7bbb6a87e6d0fd96ad138f9a573d00cf7b11e (patch) | |
tree | 05909b4e848a039e81d36506d8a282c527411cc1 /m4 | |
parent | 733a261d945657703dbc8489d8130fc6f7575102 (diff) | |
download | external_gettext-2ab7bbb6a87e6d0fd96ad138f9a573d00cf7b11e.zip external_gettext-2ab7bbb6a87e6d0fd96ad138f9a573d00cf7b11e.tar.gz external_gettext-2ab7bbb6a87e6d0fd96ad138f9a573d00cf7b11e.tar.bz2 |
Fix build problem on MacOS X with native 'sed'.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/fixautomake.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/fixautomake.m4 b/m4/fixautomake.m4 index 0de29e7..60c4803 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 |