diff options
Diffstat (limited to 'gettext-runtime/m4')
-rw-r--r-- | gettext-runtime/m4/ChangeLog | 6 | ||||
-rw-r--r-- | gettext-runtime/m4/po.m4 | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gettext-runtime/m4/ChangeLog b/gettext-runtime/m4/ChangeLog index 00db8f0..bf6dafa 100644 --- a/gettext-runtime/m4/ChangeLog +++ b/gettext-runtime/m4/ChangeLog @@ -1,3 +1,9 @@ +2005-03-13 Bruno Haible <bruno@clisp.org> + + * po.m4 (AM_PO_SUBDIRS): Use AC_CONFIG_COMMANDS instead of + AC_OUTPUT_COMMANDS. + Suggested by Alexandre Duret-Lutz <adl@src.lip6.fr>. + 2005-04-30 Bruno Haible <bruno@clisp.org> * gettext.m4 (AM_INTL_SUBDIR): Remove CPPFLAGS addition for diff --git a/gettext-runtime/m4/po.m4 b/gettext-runtime/m4/po.m4 index f2795ee..f1c48ed 100644 --- a/gettext-runtime/m4/po.m4 +++ b/gettext-runtime/m4/po.m4 @@ -1,4 +1,4 @@ -# po.m4 serial 7 (gettext-0.14.3) +# po.m4 serial 8 (gettext-0.15) dnl Copyright (C) 1995-2005 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -86,7 +86,7 @@ AC_DEFUN([AM_PO_SUBDIRS], rm -f messages.po fi - AC_OUTPUT_COMMANDS([ + AC_CONFIG_COMMANDS([po-directories], [[ for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in @@ -197,7 +197,7 @@ AC_DEFUN([AM_PO_SUBDIRS], fi ;; esac - done], + done]], [# Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake. |