emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r113860: * configure.ac (EMACS_CONFIGURATION): Escap


From: Glenn Morris
Subject: [Emacs-diffs] trunk r113860: * configure.ac (EMACS_CONFIGURATION): Escape backslashes.
Date: Wed, 14 Aug 2013 02:15:08 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113860
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/15091
author: Ulrich Mueller <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2013-08-13 22:15:01 -0400
message:
  * configure.ac (EMACS_CONFIGURATION): Escape backslashes.
modified:
  ChangeLog                      changelog-20091113204419-o5vbwnq5f7feedwu-1538
  configure.ac                   
configure.in-20091113204419-o5vbwnq5f7feedwu-783
=== modified file 'ChangeLog'
--- a/ChangeLog 2013-08-12 19:48:04 +0000
+++ b/ChangeLog 2013-08-14 02:15:01 +0000
@@ -1,3 +1,7 @@
+2013-08-14  Ulrich Müller  <address@hidden>
+
+       * configure.ac (EMACS_CONFIGURATION): Escape backslashes.  (Bug#15091)
+
 2013-08-12  Eli Zaretskii  <address@hidden>
 
        * configure.ac (HAVE_ZLIB): Don't use -lz on MinGW.

=== modified file 'configure.ac'
--- a/configure.ac      2013-08-12 19:48:04 +0000
+++ b/configure.ac      2013-08-14 02:15:01 +0000
@@ -4439,7 +4439,7 @@
 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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]