From: Daiki Ueno Date: Tue, 23 Apr 2013 10:16:48 +0000 (+0900) Subject: Don't assume that aclocal accepts configure.in. X-Git-Tag: v0.18.3~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d326a9359265621633233f72fe2f4539180b42d4;p=thirdparty%2Fgettext.git Don't assume that aclocal accepts configure.in. --- diff --git a/gettext-tools/examples/ChangeLog b/gettext-tools/examples/ChangeLog index b3461f874..e3cbdc26f 100644 --- a/gettext-tools/examples/ChangeLog +++ b/gettext-tools/examples/ChangeLog @@ -1,3 +1,7 @@ +2013-04-23 Daiki Ueno + + * po/xsmallpot.sh: Don't assume that aclocal accepts configure.in. + 2013-04-02 Daiki Ueno * Makefile.am (clean-local): New rule to remove tmp-hello-*. diff --git a/gettext-tools/examples/po/xsmallpot.sh b/gettext-tools/examples/po/xsmallpot.sh index b4a86d5df..a0bb8001a 100755 --- a/gettext-tools/examples/po/xsmallpot.sh +++ b/gettext-tools/examples/po/xsmallpot.sh @@ -22,8 +22,9 @@ case $directory in hello-c++-kde) ./autogen.sh sed -e 's,tmp-,,' < configure.in > configure.ac - grep '^\(AC_INIT\|AC_CONFIG\|AC_PROG_\|AC_SUBST(.*OBJC\|AM_INIT\|AM_CONDITIONAL\|AM_GNU_GETTEXT\|AM_PO_SUBDIRS\|AC_OUTPUT\)' configure.ac > configure.in - rm -f configure.ac + rm -f configure.in + grep '^\(AC_INIT\|AC_CONFIG\|AC_PROG_\|AC_SUBST(.*OBJC\|AM_INIT\|AM_CONDITIONAL\|AM_GNU_GETTEXT\|AM_PO_SUBDIRS\|AC_OUTPUT\)' configure.ac > tmp-configure.ac + mv -f tmp-configure.ac configure.ac autoconf -f ./configure ;; @@ -31,8 +32,8 @@ case $directory in ./autogen.sh ;; *) - grep '^\(AC_INIT\|AC_CONFIG\|AC_PROG_\|AC_SUBST(.*OBJC\|AM_INIT\|AM_CONDITIONAL\|AM_GNU_GETTEXT\|AM_PO_SUBDIRS\|AC_OUTPUT\)' configure.ac > configure.in - rm -f configure.ac + grep '^\(AC_INIT\|AC_CONFIG\|AC_PROG_\|AC_SUBST(.*OBJC\|AM_INIT\|AM_CONDITIONAL\|AM_GNU_GETTEXT\|AM_PO_SUBDIRS\|AC_OUTPUT\)' configure.ac > tmp-configure.ac + mv -f tmp-configure.ac configure.ac ./autogen.sh ./configure ;;