* 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.
This commit is contained in:
Akim Demaille 2000-02-10 10:25:23 +00:00
parent c7bd04fb16
commit 2d177917ef
3 changed files with 17 additions and 8 deletions

View File

@ -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

View 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

View 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