1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-22 10:26:20 +00:00

Tweak quoting in earlier configure.ac emacs_config_options change

This commit is contained in:
Glenn Morris 2013-02-11 19:51:24 -05:00
parent a84b7c5334
commit 71b8431643
2 changed files with 2 additions and 2 deletions

2
autogen/configure vendored
View File

@ -3377,7 +3377,7 @@ for var in CFLAGS CPPFLAGS LDFLAGS; do
esac
eval val="\$${var}"
test x"$val" = x && continue
emacs_config_options="${emacs_config_options}${emacs_config_options:+ }$var=$val"
emacs_config_options="${emacs_config_options}${emacs_config_options:+ }$var=\"$val\""
done
ac_config_headers="$ac_config_headers src/config.h:src/config.in"

View File

@ -35,7 +35,7 @@ for var in CFLAGS CPPFLAGS LDFLAGS; do
esac
eval val="\$${var}"
test x"$val" = x && continue
emacs_config_options="${emacs_config_options}${emacs_config_options:+ }$var=$val"
emacs_config_options="${emacs_config_options}${emacs_config_options:+ }$var=\"$val\""
done
AC_CONFIG_HEADER(src/config.h:src/config.in)