emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r111164: * configure.ac: Fix source c


From: Andreas Schwab
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r111164: * configure.ac: Fix source command in .gdbinit.
Date: Sun, 09 Dec 2012 09:37:01 +0100
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111164
committer: Andreas Schwab <address@hidden>
branch nick: emacs
timestamp: Sun 2012-12-09 09:37:01 +0100
message:
  * configure.ac: Fix source command in .gdbinit.
  Don't quote $MAKEINFO.
modified:
  ChangeLog
  configure.ac
=== modified file 'ChangeLog'
--- a/ChangeLog 2012-12-09 02:22:39 +0000
+++ b/ChangeLog 2012-12-09 08:37:01 +0000
@@ -1,3 +1,8 @@
+2012-12-09  Andreas Schwab  <address@hidden>
+
+       * configure.ac: Fix source command in .gdbinit.
+       Don't quote $MAKEINFO.
+
 2012-12-09  Paul Eggert  <address@hidden>
 
        Allow spaces in some configuration vars (Bug#13078).

=== modified file 'configure.ac'
--- a/configure.ac      2012-12-09 02:22:39 +0000
+++ b/configure.ac      2012-12-09 08:37:01 +0000
@@ -813,7 +813,7 @@
 dnl or exited with an error if no egrep was found.
 if test "$MAKEINFO" != "no"; then
   case `
-    "$MAKEINFO" --version 2> /dev/null |
+    $MAKEINFO --version 2> /dev/null |
     $EGREP 
'texinfo[[^0-9]]*([[1-4]][[0-9]]+|[[5-9]]|4\.[[7-9]]|4\.[[1-6]][[0-9]]+)'
   ` in
     '') MAKEINFO=no;;
@@ -1194,7 +1194,7 @@
       *** The pkg-config script could not be found. Make sure it is in your 
path, or give the full name of pkg-config with the PKG_CONFIG environment 
variable or --with-pkg-config-prog.  Or see 
http://www.freedesktop.org/software/pkgconfig to get pkg-config.])], [$4])
   else
      PKG_CONFIG_MIN_VERSION=0.9.0
-     if "$PKG_CONFIG" --atleast-pkgconfig-version "$PKG_CONFIG_MIN_VERSION"; 
then
+     if "$PKG_CONFIG" --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
         AC_MSG_CHECKING(for $2)
 
         if "$PKG_CONFIG" --exists "$2" 2>&AS_MESSAGE_LOG_FD &&
@@ -4557,7 +4557,7 @@
 AC_CONFIG_COMMANDS([gdbinit], [
 if test ! -f src/.gdbinit && test -f "$srcdir/src/.gdbinit"; then
   echo creating src/.gdbinit
-  echo "source '$srcdir/src/.gdbinit'" > src/.gdbinit
+  echo "source $srcdir/src/.gdbinit" > src/.gdbinit
 fi
 ])
 


reply via email to

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