diff options
author | hypnotoad <yoda@etoyoc.com> | 2014-10-21 01:20:10 (GMT) |
---|---|---|
committer | hypnotoad <yoda@etoyoc.com> | 2014-10-21 01:20:10 (GMT) |
commit | 6b423f0d9ebf71415e7d74789128eb873a77ef3a (patch) | |
tree | e2b5c3796642e6d0a72ad175be0b0232d167ede9 /unix | |
parent | bdc43f824155a8ac53c6e6d3c332f4776dd81c9e (diff) | |
download | tcl-6b423f0d9ebf71415e7d74789128eb873a77ef3a.zip tcl-6b423f0d9ebf71415e7d74789128eb873a77ef3a.tar.gz tcl-6b423f0d9ebf71415e7d74789128eb873a77ef3a.tar.bz2 |
Fixes to allow a standard tclsh build to do the zip file encoding, instead of
having to do it all through the zip enabled shell.
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 b635c0a..0819197 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -624,7 +624,7 @@ SRCS = $(GENERIC_SRCS) $(TOMMATH_SRCS) $(UNIX_SRCS) $(NOTIFY_SRCS) \ all: binaries libraries doc packages -binaries: ${LIB_FILE} ${TCL_EXE} +binaries: ${LIB_FILE} ${TCL_EXE} ${TCLZSH_EXE} libraries: @@ -679,7 +679,7 @@ ${TCLZSH_BASE}_bare: ${TCLZSH_OBJS} ${TCL_LIB_FILE} ${TCL_STUB_LIB_FILE} # Builds an executable linked to the Tcl dynamic library ${TCLZSH_EXE}: ${TCLZSH_BASE}_bare tclzsh.vfs - ./${TCLZSH_BASE}_bare ../tools/mkzip.tcl ${TCLZSH_EXE} \ + @$(TCL_EXE) ../tools/mkzip.tcl ${TCLZSH_EXE} \ -runtime ${TCLZSH_BASE}_bare \ -directory tclzsh.vfs chmod a+x ${TCLZSH_EXE} |