diff options
| author | Joakim Verona | 2013-08-14 04:28:55 +0200 |
|---|---|---|
| committer | Joakim Verona | 2013-08-14 04:28:55 +0200 |
| commit | 0d91bd8ed5d34f17cfa64d50ef02d414b962150a (patch) | |
| tree | ccdcc17d673d265892d12b9a9fe9f2807d6384b8 | |
| parent | cdbfa34f19db4742f6f2c253b6f009710c598443 (diff) | |
| parent | af79c3cb0b5ac53484ffc8a39894d475527a2e8a (diff) | |
| download | emacs-0d91bd8ed5d34f17cfa64d50ef02d414b962150a.tar.gz emacs-0d91bd8ed5d34f17cfa64d50ef02d414b962150a.zip | |
merge from trunk
| -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 cae27025311..9c6a5bdfadf 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -4478,7 +4478,7 @@ fi | |||
| 4478 | AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "${canonical}", | 4478 | AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "${canonical}", |
| 4479 | [Define to the canonical Emacs configuration name.]) | 4479 | [Define to the canonical Emacs configuration name.]) |
| 4480 | dnl Replace any embedded " characters (bug#13274). | 4480 | dnl Replace any embedded " characters (bug#13274). |
| 4481 | emacs_config_options=`echo "$emacs_config_options " | sed -e 's/--no-create //' -e 's/--no-recursion //' -e 's/ *$//' -e "s/\"/'/g"` | 4481 | emacs_config_options=`echo "$emacs_config_options " | sed -e 's/--no-create //' -e 's/--no-recursion //' -e 's/ *$//' -e "s/\"/'/g" -e 's/\\\\/\\\\\\\\/g'` |
| 4482 | AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${emacs_config_options}", | 4482 | AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${emacs_config_options}", |
| 4483 | [Define to the options passed to configure.]) | 4483 | [Define to the options passed to configure.]) |
| 4484 | AH_TEMPLATE(config_opsysfile, [Some platforms that do not use configure | 4484 | AH_TEMPLATE(config_opsysfile, [Some platforms that do not use configure |