diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-03-23 10:45:13 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-03-23 10:45:13 (GMT) |
commit | 896f5c16bc45c33a1010c373664a806455cdce47 (patch) | |
tree | 32f5e2fa78a58a4922a2757b6d70b79868f6a858 /unix/Makefile.in | |
parent | b76131c53da56bee1254947caed81e4107ac9f00 (diff) | |
download | tk-896f5c16bc45c33a1010c373664a806455cdce47.zip tk-896f5c16bc45c33a1010c373664a806455cdce47.tar.gz tk-896f5c16bc45c33a1010c373664a806455cdce47.tar.bz2 |
* unix/configure.in, unix/Makefile.in: [Bug 2965133]: Get rid of the
spurious NONE and some pointless quotes that were causing problems
with building Tk on OSX. Overall bug might not yet be solved.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index f7b55ed..1081c12 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.167 2010/02/22 23:38:53 nijtmans Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.168 2010/03/23 10:45:13 dkf Exp $ # Current Tk version; used in various names. @@ -679,7 +679,7 @@ demo: # This target can be used to run wish inside either gdb or insight gdb: ${WISH_EXE} - @echo "set env @LD_LIBRARY_PATH_VAR@=\"`pwd`:${TCL_BIN_DIR}:$${@LD_LIBRARY_PATH_VAR@}\"" > gdb.run + @echo "set env @LD_LIBRARY_PATH_VAR@=`pwd`:${TCL_BIN_DIR}:$${@LD_LIBRARY_PATH_VAR@}" > gdb.run @echo "set env TCL_LIBRARY=@TCL_SRC_DIR@/library" >> gdb.run @echo "set env TK_LIBRARY=@TK_SRC_DIR@/library" >> gdb.run gdb ./${WISH_EXE} --command=gdb.run |