From: Akim Demaille Date: Tue, 21 Mar 2000 09:20:40 +0000 (+0000) Subject: * acgeneral.m4 (AC_OUTPUT_SUBDIRS): Rename as _AC_OUTPUT_SUBDIRS. X-Git-Tag: autoconf-2.50~1019 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cfc55ad76faff0ee444a27353dcf7fbd58600a54;p=thirdparty%2Fautoconf.git * acgeneral.m4 (AC_OUTPUT_SUBDIRS): Rename as _AC_OUTPUT_SUBDIRS. No argument, use AC_LIST_SUBDIRS. Adjust callers. --- diff --git a/ChangeLog b/ChangeLog index 88dd7bf72..80c699153 100644 --- a/ChangeLog +++ b/ChangeLog @@ -10,6 +10,12 @@ 2000-03-20 Akim Demaille + * acgeneral.m4 (AC_OUTPUT_SUBDIRS): Rename as _AC_OUTPUT_SUBDIRS. + No argument, use AC_LIST_SUBDIRS. + Adjust callers. + +2000-03-18 Akim Demaille + * acgeneral.m4 (AC_ARG_ENABLE, AC_ARG_WITH): Double quote the head of the help snippet. diff --git a/acgeneral.m4 b/acgeneral.m4 index 3faf42abb..b63f1a423 100644 --- a/acgeneral.m4 +++ b/acgeneral.m4 @@ -3604,7 +3604,7 @@ AC_OUTPUT_COMMANDS_POST()dnl test "$no_create" = yes || $SHELL $CONFIG_STATUS || exit 1 dnl config.status should not do recursion. -ifset([AC_LIST_SUBDIRS], [AC_OUTPUT_SUBDIRS(AC_LIST_SUBDIRS)])dnl +ifset([AC_LIST_SUBDIRS], [_AC_OUTPUT_SUBDIRS()])dnl ])# AC_OUTPUT @@ -4367,11 +4367,11 @@ EOF ])# _AC_OUTPUT_COMMANDS -# AC_OUTPUT_SUBDIRS(DIRECTORY...) -# ------------------------------- +# _AC_OUTPUT_SUBDIRS +# ------------------ # This is a subroutine of AC_OUTPUT, but it does not go into # config.status, rather, it is called after running config.status. -define(AC_OUTPUT_SUBDIRS, +define(_AC_OUTPUT_SUBDIRS, [ # # CONFIG_SUBDIRS section. @@ -4402,10 +4402,10 @@ if test "$no_recursion" != yes; then esac done -ifdef([AC_PROVIDE_AC_PROG_INSTALL],[ ac_given_INSTALL="$INSTALL" +ifdef([AC_PROVIDE_AC_PROG_INSTALL], [ ac_given_INSTALL="$INSTALL" ])dnl - for ac_config_dir in $1; do + for ac_config_dir in AC_LIST_SUBDIRS; do # Do not complain, so a configure script can configure whichever # parts of a large source tree are present. @@ -4481,7 +4481,7 @@ ifdef([AC_PROVIDE_AC_PROG_INSTALL], cd $ac_popdir done fi -])# AC_OUTPUT_SUBDIRS +])# _AC_OUTPUT_SUBDIRS # AC_LINKER_OPTION(LINKER-OPTIONS, SHELL-VARIABLE) diff --git a/lib/autoconf/general.m4 b/lib/autoconf/general.m4 index 3faf42abb..b63f1a423 100644 --- a/lib/autoconf/general.m4 +++ b/lib/autoconf/general.m4 @@ -3604,7 +3604,7 @@ AC_OUTPUT_COMMANDS_POST()dnl test "$no_create" = yes || $SHELL $CONFIG_STATUS || exit 1 dnl config.status should not do recursion. -ifset([AC_LIST_SUBDIRS], [AC_OUTPUT_SUBDIRS(AC_LIST_SUBDIRS)])dnl +ifset([AC_LIST_SUBDIRS], [_AC_OUTPUT_SUBDIRS()])dnl ])# AC_OUTPUT @@ -4367,11 +4367,11 @@ EOF ])# _AC_OUTPUT_COMMANDS -# AC_OUTPUT_SUBDIRS(DIRECTORY...) -# ------------------------------- +# _AC_OUTPUT_SUBDIRS +# ------------------ # This is a subroutine of AC_OUTPUT, but it does not go into # config.status, rather, it is called after running config.status. -define(AC_OUTPUT_SUBDIRS, +define(_AC_OUTPUT_SUBDIRS, [ # # CONFIG_SUBDIRS section. @@ -4402,10 +4402,10 @@ if test "$no_recursion" != yes; then esac done -ifdef([AC_PROVIDE_AC_PROG_INSTALL],[ ac_given_INSTALL="$INSTALL" +ifdef([AC_PROVIDE_AC_PROG_INSTALL], [ ac_given_INSTALL="$INSTALL" ])dnl - for ac_config_dir in $1; do + for ac_config_dir in AC_LIST_SUBDIRS; do # Do not complain, so a configure script can configure whichever # parts of a large source tree are present. @@ -4481,7 +4481,7 @@ ifdef([AC_PROVIDE_AC_PROG_INSTALL], cd $ac_popdir done fi -])# AC_OUTPUT_SUBDIRS +])# _AC_OUTPUT_SUBDIRS # AC_LINKER_OPTION(LINKER-OPTIONS, SHELL-VARIABLE)