1# fixautomake.m4 serial 8 (gettext-0.18) 2dnl Copyright (C) 2002-2003, 2006, 2009 Free Software Foundation, Inc. 3dnl This file is free software, distributed under the terms of the GNU 4dnl General Public License. As a special exception to the GNU General 5dnl Public License, this file may be distributed as part of a program 6dnl that contains a configuration script generated by Autoconf, under 7dnl the same distribution terms as the rest of that program. 8 9dnl From Bruno Haible 10 11dnl Fix an automake-1.5-1.11 bug: the distrib rule is omitted. 12AC_DEFUN([FIX_MAKEFILE_DISTRIB], [ 13 sed -e 's,^#distdir:,distdir:,' < $ac_file > $ac_file.tmp 14 mv $ac_file.tmp $ac_file 15]) 16 17dnl Fix an automake-1.9-1.11 bug: the distrib rule is not extensible. 18dnl Insert a invocation of the distdir1 target inside the distdir commands, 19dnl after $(distdir) has been erased and re-created. 20AC_DEFUN([FIX_MAKEFILE_TOPDIR_DISTRIB], [ 21 sed_script='/mkdir "*\$(distdir)"*$/{a\ 22\ $(MAKE) distdir1 23}' 24 sed -e "$sed_script" < $ac_file > $ac_file.tmp 25 mv $ac_file.tmp $ac_file 26]) 27