* acgeneral.m4 (AC_OUTPUT): When dispatching your arguments, use

ifval, not ifset!
Dispatch actions to AC_CONFIG_COMMANDS not AC_OUTPUT_COMMANDS, to
avoid unneeded warnings for obsolete use of AC_OUTPUT_COMMANDS.
This commit is contained in:
Akim Demaille 2000-02-10 16:25:47 +00:00
parent 65766c32aa
commit 8cb64f7ca8
3 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,10 @@
2000-02-10 Akim Demaille <akim@epita.fr>
* acgeneral.m4 (AC_OUTPUT): When dispatching your arguments, use
ifval, not ifset!
Dispatch actions to AC_CONFIG_COMMANDS not AC_OUTPUT_COMMANDS, to
avoid unneeded warnings for obsolete use of AC_OUTPUT_COMMANDS.
2000-02-10 Akim Demaille <akim@epita.fr>
* acgeneral.m4 (AC_VERBOSE): This is a tab, not spaces.

View File

@ -3313,8 +3313,8 @@ define(AC_OUTPUT,
[dnl Dispatch the extra arguments to their native macros.
ifval([$1],
[AC_CONFIG_FILES([$1])])dnl
ifset([$2$3],
[AC_OUTPUT_COMMANDS([$2], [$3])])dnl
ifval([$2$3],
[AC_CONFIG_COMMANDS(default, [[$2]], [[$3]])])dnl
trap '' 1 2 15
AC_CACHE_SAVE
trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15

View File

@ -3313,8 +3313,8 @@ define(AC_OUTPUT,
[dnl Dispatch the extra arguments to their native macros.
ifval([$1],
[AC_CONFIG_FILES([$1])])dnl
ifset([$2$3],
[AC_OUTPUT_COMMANDS([$2], [$3])])dnl
ifval([$2$3],
[AC_CONFIG_COMMANDS(default, [[$2]], [[$3]])])dnl
trap '' 1 2 15
AC_CACHE_SAVE
trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15