From: Bruno Haible Date: Tue, 15 May 2001 18:57:57 +0000 (+0000) Subject: Solaris portability. X-Git-Tag: v0.10.38~31 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=7271c662bc25c8de6a0e2e3a1a822f1089583a96;p=thirdparty%2Fgettext.git Solaris portability. --- diff --git a/misc/ChangeLog b/misc/ChangeLog index 22c760933..1b9ec598d 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -1,3 +1,8 @@ +2001-05-12 Paul Eggert + + * 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 * gettextize.in: Tell the user about glibc21.m4. diff --git a/misc/gettextize.in b/misc/gettextize.in index 3f3192b14..19731c0ea 100644 --- a/misc/gettextize.in +++ b/misc/gettextize.in @@ -177,12 +177,12 @@ $DATE gettextize * Makefile.in.in: Upgrade to gettext-${version}. EOF -if test -e $srcdir/po/cat-id-tbl.c; then +if test -f $srcdir/po/cat-id-tbl.c; then $echo "Removing po/cat-id-tbl.c" rm -f $srcdir/po/cat-id-tbl.c $echo " * cat-id-tbl.c: Remove file." >> $srcdir/po/ChangeLog.tmp fi -if test -e $srcdir/po/stamp-cat-id; then +if test -f $srcdir/po/stamp-cat-id; then $echo "Removing po/stamp-cat-id" rm -f $srcdir/po/stamp-cat-id $echo " * stamp-cat-id: Remove file." >> $srcdir/po/ChangeLog.tmp