diff options
author | rmax <rmax> | 2002-06-26 13:05:27 (GMT) |
---|---|---|
committer | rmax <rmax> | 2002-06-26 13:05:27 (GMT) |
commit | f1e972324325cbee2727c085e1d0cd622d9778af (patch) | |
tree | 578021a8dbbf604e30e9995f76c6db0aeed850a1 /unix | |
parent | 628eb714ab078e3d6d80ce796f014536d0403d4f (diff) | |
download | tcl-f1e972324325cbee2727c085e1d0cd622d9778af.zip tcl-f1e972324325cbee2727c085e1d0cd622d9778af.tar.gz tcl-f1e972324325cbee2727c085e1d0cd622d9778af.tar.bz2 |
Fixed a typo in the "shell" target.
Diffstat (limited to 'unix')
-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 6611301..25347a6 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.102 2002/06/25 15:20:44 rmax Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.103 2002/06/26 13:05:27 rmax Exp $ VERSION = @TCL_VERSION@ @@ -489,7 +489,7 @@ runtest: tcltest # via `make shell SCRIPT=/tmp/foo.tcl` shell: tclsh @LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}; export LD_LIBRARY_PATH; \ - @DYLD_LIBRARY_PATH=`pwd`:${DYLD_LIBRARY_PATH}; export DYLD_LIBRARY_PATH; \ + DYLD_LIBRARY_PATH=`pwd`:${DYLD_LIBRARY_PATH}; export DYLD_LIBRARY_PATH; \ LIBPATH=`pwd`:${LIBPATH}; export LIBPATH; \ SHLIB_PATH=`pwd`:${SHLIB_PATH}; export SHLIB_PATH; \ TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \ |