* gettext-0.15 released.
+2006-07-21 Bruno Haible <bruno@clisp.org>
+
+ * m4/fixautomake.m4 (FIX_MAKEFILE_TOPDIR_DISTRIB): Use a multiline -e argument
+ instead of multiple -e arguments. Needed for AIX 4.
+
2006-07-20 Bruno Haible <bruno@clisp.org>
* version.sh: Bump version number to 0.15.
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 -e '/^ mkdir \$(distdir)$/{a\' -e ' $(MAKE) distdir1' -e '}' < $ac_file > $ac_file.tmp
+ sed_script='/^ mkdir \$(distdir)$/{a\
+ $(MAKE) distdir1
+}'
+ sed -e "$sed_script" < $ac_file > $ac_file.tmp
mv $ac_file.tmp $ac_file
])