]> git.eshelyaron.com Git - emacs.git/commitdiff
* configure.ac (src/.gdbinit): Use ac_abs_top_srcdir.
authorGlenn Morris <rgm@gnu.org>
Wed, 23 Oct 2013 23:27:19 +0000 (19:27 -0400)
committerGlenn Morris <rgm@gnu.org>
Wed, 23 Oct 2013 23:27:19 +0000 (19:27 -0400)
ChangeLog
configure.ac

index e7df2d1c0d2ee2bfcaf61280df0e8e795b882cc5..65d12ddd498658c6a9c49e6af10140ac632e2f3b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,7 @@
 
        Make building in directories with whitespace possible.  (Bug#15675)
        * configure.ac (srcdir): Don't make it absolute - abs_srcdir exists.
+       (src/.gdbinit): Use ac_abs_top_srcdir.
        * Makefile.in (abs_srcdir): New, set by configure.
        (buildlisppath, epaths-force-w32): Use abs_srcdir.
        (install-arch-indep, install-etcdoc, install-info, install-man)
index 6a2beb707035239db50f7eca45bd46d2aba93961..145db6a85c4b558a121dd8d96c69b8bcbde32569 100644 (file)
@@ -5042,9 +5042,12 @@ else
 fi
 ], [GCC="$GCC" CPPFLAGS="$CPPFLAGS" opsys="$opsys"])
 
+dnl NB we have to cheat and use the ac_... version because abs_top_srcdir
+dnl is not yet set, sigh.  Or we could use ../$srcdir/src/.gdbinit,
+dnl or a symlink?
 AC_CONFIG_COMMANDS([src/.gdbinit], [
 if test ! -f src/.gdbinit && test -f "$srcdir/src/.gdbinit"; then
-  echo "source $srcdir/src/.gdbinit" > src/.gdbinit
+  echo "source $ac_abs_top_srcdir/src/.gdbinit" > src/.gdbinit
 fi
 ])