]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Don't
authorAkim Demaille <akim@epita.fr>
Thu, 10 Feb 2000 10:25:23 +0000 (10:25 +0000)
committerAkim Demaille <akim@epita.fr>
Thu, 10 Feb 2000 10:25:23 +0000 (10:25 +0000)
  : ${FOO="$foo"}
but
  : ${FOO=$foo}
Since Ultrix will also assign the quotes to FOO.
Reported by Harlan Stenn.

ChangeLog
acgeneral.m4
lib/autoconf/general.m4

index e88b3b928a2e393278735be50117ad3c57c0a159..ae24db0a51d9811d83944b446b5b47309e4e1e85 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2000-02-10  Akim Demaille  <akim@epita.fr>
+
+       * 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  <akim@epita.fr>
 
        Keep `AC_CHECK_TYPE' backward compatibility and provide a proper
index 7e66223d9cb6135214e586efd1357551eb7583f8..37dfda6e3e8897db56f5a56294b7a3bea6c2d21e 100644 (file)
@@ -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
 
index 7e66223d9cb6135214e586efd1357551eb7583f8..37dfda6e3e8897db56f5a56294b7a3bea6c2d21e 100644 (file)
@@ -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