diff options
author | Glenn Morris <rgm@gnu.org> | 2013-02-11 19:51:24 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-02-11 19:51:24 -0500 |
commit | 71b84316436598773995a710c1686cce427b41f2 (patch) | |
tree | ff91f254c7a3861e8ded5f8f467de9391edeeb94 /autogen/configure | |
parent | a84b7c5334e232913111b840f2283d0138a6f5fb (diff) | |
download | emacs-71b84316436598773995a710c1686cce427b41f2.tar.gz emacs-71b84316436598773995a710c1686cce427b41f2.tar.bz2 emacs-71b84316436598773995a710c1686cce427b41f2.zip |
Tweak quoting in earlier configure.ac emacs_config_options change
Diffstat (limited to 'autogen/configure')
-rwxr-xr-x | autogen/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen/configure b/autogen/configure index 8226d489f72..3183fe3a382 100755 --- a/autogen/configure +++ b/autogen/configure @@ -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" |