diff options
author | Alan Modra <amodra@gmail.com> | 2001-10-03 01:46:25 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-10-03 01:46:25 +0000 |
commit | 73fb1ef90a4bc8b4ae71b8dabb780ee5bde15499 (patch) | |
tree | 42a781038513cc4e5f54f5556af9fe38f54d069c /gettext.m4 | |
parent | 0a30e5973d97a046306cde1ae167101812a2d01c (diff) | |
download | gdb-73fb1ef90a4bc8b4ae71b8dabb780ee5bde15499.zip gdb-73fb1ef90a4bc8b4ae71b8dabb780ee5bde15499.tar.gz gdb-73fb1ef90a4bc8b4ae71b8dabb780ee5bde15499.tar.bz2 |
* gettext.m4: Test po/POTFILES.in exists before trying to read.
Diffstat (limited to 'gettext.m4')
-rw-r--r-- | gettext.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |