summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2010-04-30 09:25:01 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2010-04-30 09:25:01 (GMT)
commit2233b6f37129e181e04e9513e9ccc31b34672012 (patch)
tree3c83d674ca1b8c3c37b836ea5269a98275af487c /unix
parentddc75a8e93d575235904037587c3e772f8c96400 (diff)
downloadtcl-2233b6f37129e181e04e9513e9ccc31b34672012.zip
tcl-2233b6f37129e181e04e9513e9ccc31b34672012.tar.gz
tcl-2233b6f37129e181e04e9513e9ccc31b34672012.tar.bz2
* unix/Makefile.in (gdb-test): Remove quotes so that library paths are
constructed correctly.
Diffstat (limited to 'unix')
-rw-r--r--unix/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index d48e076..9950896 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -4,7 +4,7 @@
# "./configure", which is a configuration script generated by the "autoconf"
# program (constructs like "@foo@" will get replaced in the actual Makefile.
#
-# RCS: @(#) $Id: Makefile.in,v 1.297 2010/04/29 21:19:32 andreas_kupries Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.298 2010/04/30 09:25:01 dkf Exp $
VERSION = @TCL_VERSION@
MAJOR_VERSION = @TCL_MAJOR_VERSION@
@@ -694,7 +694,7 @@ test-tcl: ${TCLTEST_EXE}
$(SHELL_ENV) ./${TCLTEST_EXE} $(TOP_DIR)/tests/all.tcl $(TESTFLAGS)
gdb-test: ${TCLTEST_EXE}
- @echo "set env @LD_LIBRARY_PATH_VAR@=\"`pwd`:$${@LD_LIBRARY_PATH_VAR@}\"" > gdb.run
+ @echo "set env @LD_LIBRARY_PATH_VAR@=`pwd`:$${@LD_LIBRARY_PATH_VAR@}" > gdb.run
@echo "set env TCL_LIBRARY=${TCL_BUILDTIME_LIBRARY}" >> gdb.run
@echo "set args $(TOP_DIR)/tests/all.tcl $(TESTFLAGS) -singleproc 1" >> gdb.run
$(GDB) ./${TCLTEST_EXE} --command=gdb.run