mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-08 12:40:49 -08:00
* configure.ac (EMACS_CONFIGURATION): Escape backslashes.
Fixes: debbugs:15091
This commit is contained in:
parent
281c7202cc
commit
af79c3cb0b
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2013-08-14 Ulrich Müller <ulm@gentoo.org>
|
||||
|
||||
* configure.ac (EMACS_CONFIGURATION): Escape backslashes. (Bug#15091)
|
||||
|
||||
2013-08-12 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* configure.ac (HAVE_ZLIB): Don't use -lz on MinGW.
|
||||
|
|
|
|||
|
|
@ -4439,7 +4439,7 @@ fi
|
|||
AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "${canonical}",
|
||||
[Define to the canonical Emacs configuration name.])
|
||||
dnl Replace any embedded " characters (bug#13274).
|
||||
emacs_config_options=`echo "$emacs_config_options " | sed -e 's/--no-create //' -e 's/--no-recursion //' -e 's/ *$//' -e "s/\"/'/g"`
|
||||
emacs_config_options=`echo "$emacs_config_options " | sed -e 's/--no-create //' -e 's/--no-recursion //' -e 's/ *$//' -e "s/\"/'/g" -e 's/\\\\/\\\\\\\\/g'`
|
||||
AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${emacs_config_options}",
|
||||
[Define to the options passed to configure.])
|
||||
AH_TEMPLATE(config_opsysfile, [Some platforms that do not use configure
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue