From: Akim Demaille Date: Thu, 10 Feb 2000 10:25:23 +0000 (+0000) Subject: * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Don't X-Git-Tag: autoconf-2.50~1160 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d177917efb991445ca372cc0bb4d6479792fab5;p=thirdparty%2Fautoconf.git * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Don't : ${FOO="$foo"} but : ${FOO=$foo} Since Ultrix will also assign the quotes to FOO. Reported by Harlan Stenn. --- diff --git a/ChangeLog b/ChangeLog index e88b3b928..ae24db0a5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2000-02-10 Akim Demaille + + * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Don't + : ${FOO="$foo"} + but + : ${FOO=$foo} + Since Ultrix will also assign the quotes to FOO. + Reported by Harlan Stenn. + 2000-02-10 Akim Demaille Keep `AC_CHECK_TYPE' backward compatibility and provide a proper diff --git a/acgeneral.m4 b/acgeneral.m4 index 7e66223d9..37dfda6e3 100644 --- a/acgeneral.m4 +++ b/acgeneral.m4 @@ -3538,13 +3538,13 @@ ifval(AC_LIST_HEADERS()AC_LIST_LINKS()AC_LIST_FILES()AC_LIST_COMMANDS(), # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. if [\$]ac_need_defaults; then -ifset([AC_LIST_FILES], [ : \${CONFIG_FILES="\$config_files"} +ifset([AC_LIST_FILES], [ : \${CONFIG_FILES=\$config_files} ])dnl -ifset([AC_LIST_HEADERS], [ : \${CONFIG_HEADERS="\$config_headers"} +ifset([AC_LIST_HEADERS], [ : \${CONFIG_HEADERS=\$config_headers} ])dnl -ifset([AC_LIST_LINKS], [ : \${CONFIG_LINKS="\$config_links"} +ifset([AC_LIST_LINKS], [ : \${CONFIG_LINKS=\$config_links} ])dnl -ifset([AC_LIST_COMMANDS], [ : \${CONFIG_COMMANDS="\$config_commands"} +ifset([AC_LIST_COMMANDS], [ : \${CONFIG_COMMANDS=\$config_commands} ])dnl fi diff --git a/lib/autoconf/general.m4 b/lib/autoconf/general.m4 index 7e66223d9..37dfda6e3 100644 --- a/lib/autoconf/general.m4 +++ b/lib/autoconf/general.m4 @@ -3538,13 +3538,13 @@ ifval(AC_LIST_HEADERS()AC_LIST_LINKS()AC_LIST_FILES()AC_LIST_COMMANDS(), # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. if [\$]ac_need_defaults; then -ifset([AC_LIST_FILES], [ : \${CONFIG_FILES="\$config_files"} +ifset([AC_LIST_FILES], [ : \${CONFIG_FILES=\$config_files} ])dnl -ifset([AC_LIST_HEADERS], [ : \${CONFIG_HEADERS="\$config_headers"} +ifset([AC_LIST_HEADERS], [ : \${CONFIG_HEADERS=\$config_headers} ])dnl -ifset([AC_LIST_LINKS], [ : \${CONFIG_LINKS="\$config_links"} +ifset([AC_LIST_LINKS], [ : \${CONFIG_LINKS=\$config_links} ])dnl -ifset([AC_LIST_COMMANDS], [ : \${CONFIG_COMMANDS="\$config_commands"} +ifset([AC_LIST_COMMANDS], [ : \${CONFIG_COMMANDS=\$config_commands} ])dnl fi