diff options
author | mdejong <mdejong> | 2001-09-10 00:33:09 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-09-10 00:33:09 (GMT) |
commit | bcc1ef87efd2eab7f065b4e357b890ac9efcea79 (patch) | |
tree | 4ccaad214eff686109f1f8803970c055756a1706 /unix/Makefile.in | |
parent | 160d9aa27ab287ec119b3b3f4530b6e2e50198c2 (diff) | |
download | tcl-bcc1ef87efd2eab7f065b4e357b890ac9efcea79.zip tcl-bcc1ef87efd2eab7f065b4e357b890ac9efcea79.tar.gz tcl-bcc1ef87efd2eab7f065b4e357b890ac9efcea79.tar.bz2 |
* unix/Makefile.in:
* win/Makefile.in: Use () around variable name
instead of {}. Use TCLTEST variable directly
instead of depending on the tcltest alias.
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 ae9bee8..31ae68e 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.82 2001/09/07 02:43:12 dgp Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.83 2001/09/10 00:33:09 mdejong Exp $ VERSION = @TCL_VERSION@ @@ -472,7 +472,7 @@ shell: tclsh LIBPATH=`pwd`:${LIBPATH}; export LIBPATH; \ SHLIB_PATH=`pwd`:${SHLIB_PATH}; export SHLIB_PATH; \ TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \ - ./tclsh ${SCRIPT} + ./tclsh $(SCRIPT) # The following target outputs the name of the top-level source directory # for Tcl (it is used by Tk's configure script, for example). The |