diff options
| author | Ulrich Mueller | 2013-08-13 22:15:01 -0400 |
|---|---|---|
| committer | Glenn Morris | 2013-08-13 22:15:01 -0400 |
| commit | af79c3cb0b5ac53484ffc8a39894d475527a2e8a (patch) | |
| tree | e386fef38c6ab8fb861356d9a3777f371eeb282c | |
| parent | 281c7202ccf811154efa219d69d1aaababbd7501 (diff) | |
| download | emacs-af79c3cb0b5ac53484ffc8a39894d475527a2e8a.tar.gz emacs-af79c3cb0b5ac53484ffc8a39894d475527a2e8a.zip | |
* configure.ac (EMACS_CONFIGURATION): Escape backslashes.
Fixes: debbugs:15091
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.ac | 2 |
2 files changed, 5 insertions, 1 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-08-14 Ulrich Müller <ulm@gentoo.org> | ||
| 2 | |||
| 3 | * configure.ac (EMACS_CONFIGURATION): Escape backslashes. (Bug#15091) | ||
| 4 | |||
| 1 | 2013-08-12 Eli Zaretskii <eliz@gnu.org> | 5 | 2013-08-12 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * configure.ac (HAVE_ZLIB): Don't use -lz on MinGW. | 7 | * configure.ac (HAVE_ZLIB): Don't use -lz on MinGW. |
diff --git a/configure.ac b/configure.ac index 20054fd6d2f..61ea613e287 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -4439,7 +4439,7 @@ fi | |||
| 4439 | AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "${canonical}", | 4439 | AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "${canonical}", |
| 4440 | [Define to the canonical Emacs configuration name.]) | 4440 | [Define to the canonical Emacs configuration name.]) |
| 4441 | dnl Replace any embedded " characters (bug#13274). | 4441 | dnl Replace any embedded " characters (bug#13274). |
| 4442 | emacs_config_options=`echo "$emacs_config_options " | sed -e 's/--no-create //' -e 's/--no-recursion //' -e 's/ *$//' -e "s/\"/'/g"` | 4442 | emacs_config_options=`echo "$emacs_config_options " | sed -e 's/--no-create //' -e 's/--no-recursion //' -e 's/ *$//' -e "s/\"/'/g" -e 's/\\\\/\\\\\\\\/g'` |
| 4443 | AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${emacs_config_options}", | 4443 | AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${emacs_config_options}", |
| 4444 | [Define to the options passed to configure.]) | 4444 | [Define to the options passed to configure.]) |
| 4445 | AH_TEMPLATE(config_opsysfile, [Some platforms that do not use configure | 4445 | AH_TEMPLATE(config_opsysfile, [Some platforms that do not use configure |