From: Alan Modra Date: Wed, 3 Oct 2001 01:46:25 +0000 (+0000) Subject: * gettext.m4: Test po/POTFILES.in exists before trying to read. X-Git-Tag: cygnus_cvs_20020108_pre~1170 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=73fb1ef90a4bc8b4ae71b8dabb780ee5bde15499;p=external%2Fbinutils.git * gettext.m4: Test po/POTFILES.in exists before trying to read. --- diff --git a/ChangeLog b/ChangeLog index 4f96331..509b7f0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-10-03 Alan Modra + + * gettext.m4: Test po/POTFILES.in exists before trying to read. + 2001-09-29 Alexandre Oliva * Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX). diff --git a/gettext.m4 b/gettext.m4 index 012bb81..82a5277 100644 --- a/gettext.m4 +++ b/gettext.m4 @@ -256,8 +256,8 @@ __argz_count __argz_stringify __argz_next]) dnl Generate list of files to be processed by xgettext which will dnl be included in po/Makefile. But only do this if the po directory - dnl exists in srcdir. - if test -d $srcdir/po; then + dnl exists in srcdir and contains POTFILES.in. + if test -f $srcdir/po/POTFILES.in; then test -d po || mkdir po if test "x$srcdir" != "x."; then if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then