From: Bruno Haible Date: Tue, 22 May 2001 14:15:47 +0000 (+0000) Subject: Update for autoconf-2.50. X-Git-Tag: v0.11~702 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8a72bc3f17e4cc9ac39dcd62e2be985578b842f;p=thirdparty%2Fgettext.git Update for autoconf-2.50. --- diff --git a/misc/ChangeLog b/misc/ChangeLog index d4e4b5201..428d1f537 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -1,7 +1,11 @@ +2001-05-21 Alexandre Duret-Lutz + + * gettextize.in: Check for configure.ac in addition to configure.in. + 2001-05-12 Paul Eggert - * misc/gettextize.in: Replace "test -e" with "test -f", since the - 'test' builtin of Solaris 8 /bin/sh doesn't grok "test -e". + * gettextize.in: Replace "test -e" with "test -f", since the 'test' + builtin of Solaris 8 /bin/sh doesn't grok "test -e". 2001-05-11 Bruno Haible 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 }