mirror of
git://git.sv.gnu.org/autoconf
synced 2025-01-24 10:54:42 +08:00
* 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:
parent
65766c32aa
commit
8cb64f7ca8
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user