]> git.eshelyaron.com Git - emacs.git/commitdiff
* configure.ac (LIBXML2_CFLAGS): Fix xcrun-related quoting problem.
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 29 Dec 2013 07:15:01 +0000 (23:15 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 29 Dec 2013 07:15:01 +0000 (23:15 -0800)
Reported by YAMAMOTO Mitsuharu in:
http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00995.html

ChangeLog
configure.ac

index ba555fc716906c4a0b9d99a829afdb497d88396f..aeebb19684bc476e16b1ff956be5a97fd54f0340 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-12-29  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * configure.ac (LIBXML2_CFLAGS): Fix xcrun-related quoting problem.
+       Reported by YAMAMOTO Mitsuharu in:
+       http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00995.html
+
 2013-12-28  Jan Djärv  <jan.h.d@swipnet.se>
 
        * configure.ac: Fix CC detection for xcrun case.
index cf4ca9814e6c657e480374c95a4eb21439fd8367..92741443fe7a343d43e2b148b0f7089039c742b3 100644 (file)
@@ -3296,7 +3296,7 @@ if test "${with_xml2}" != "no"; then
   # Built-in libxml2 on OS X 10.8 lacks libxml-2.0.pc.
   if test "${HAVE_LIBXML2}" != "yes" -a "$opsys" = "darwin"; then
     SAVE_CPPFLAGS="$CPPFLAGS"
-    CPPFLAGS="$CPPFLAGS -I'$xcsdkdir/usr/include/libxml2'"
+    CPPFLAGS=$CPPFLAGS' -I"$xcsdkdir"/usr/include/libxml2'
     AC_CHECK_HEADER(libxml/HTMLparser.h,
       [AC_CHECK_DECL(HTML_PARSE_RECOVER, HAVE_LIBXML2=yes, ,
                     [#include <libxml/HTMLparser.h>])])