From: Bruno Haible Date: Tue, 22 May 2001 14:15:14 +0000 (+0000) Subject: Update for autoconf-2.50. X-Git-Tag: v0.10.38~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a284fd72165e4bb5f01f80c757bbc3e9a34e11ad;p=thirdparty%2Fgettext.git Update for autoconf-2.50. --- diff --git a/misc/ChangeLog b/misc/ChangeLog index 1b9ec598d..428d1f537 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -1,3 +1,7 @@ +2001-05-21 Alexandre Duret-Lutz + + * gettextize.in: Check for configure.ac in addition to configure.in. + 2001-05-12 Paul Eggert * gettextize.in: Replace "test -e" with "test -f", since the 'test' diff --git a/misc/gettextize.in b/misc/gettextize.in index 608cadc56..2c1e727a6 100644 --- a/misc/gettextize.in +++ b/misc/gettextize.in @@ -89,8 +89,8 @@ fi prefix=@prefix@ gettext_dir=@datadir@/gettext -test -f configure.in || { - $echo "Missing configure.in, please cd to your package first." +test -f configure.in || test -f configure.ac || { + $echo "Missing configure.in or configure.ac, please cd to your package first." exit 1 }