summaryrefslogtreecommitdiffstats
path: root/unix/Makefile.in
diff options
context:
space:
mode:
authorculler <culler>2021-02-12 01:46:21 (GMT)
committerculler <culler>2021-02-12 01:46:21 (GMT)
commit840ba03059b7fa3e6995fdf5b6ba2f4f6c9b1023 (patch)
tree9507a9a0af32aa206bab3bc93967f13ac2a5272a /unix/Makefile.in
parent89fa1f862f5eda2693f5783393adf5352a96a1da (diff)
downloadtcl-840ba03059b7fa3e6995fdf5b6ba2f4f6c9b1023.zip
tcl-840ba03059b7fa3e6995fdf5b6ba2f4f6c9b1023.tar.gz
tcl-840ba03059b7fa3e6995fdf5b6ba2f4f6c9b1023.tar.bz2
macher 1.1 -> 1.2 (bug fixes) and account for new append syntax.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r--unix/Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 7c87f07..df55f5d 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -795,7 +795,8 @@ ${LIB_FILE}: ${STUB_LIB_FILE} ${OBJS} ${TCL_ZIP_FILE}
@if test "${ZIPFS_BUILD}" = "1" ; then \
if test "x$(MACHER)" = "x" ; then \
cat ${TCL_ZIP_FILE} >> ${LIB_FILE}; \
- else $(MACHER) append ${TCL_ZIP_FILE} ${LIB_FILE}; \
+ else $(MACHER) append ${LIB_FILE} ${TCL_ZIP_FILE} /tmp/macher_output; \
+ mv /tmp/macher_output ${LIB_FILE}; \
fi; \
${NATIVE_ZIP} -A ${LIB_FILE} \
|| echo 'ignore zip-error by adjust sfx process (not executable?)'; \
@@ -825,7 +826,8 @@ ${TCL_EXE}: ${TCLSH_OBJS} ${TCL_LIB_FILE} ${TCL_STUB_LIB_FILE} ${TCL_ZIP_FILE}
@if test "${ZIPFS_BUILD}" = "2" ; then \
if test "x$(MACHER)" = "x" ; then \
cat ${TCL_ZIP_FILE} >> ${TCL_EXE}; \
- else $(MACHER) append ${TCL_ZIP_FILE} ${TCL_EXE}; \
+ else $(MACHER) append ${TCL_EXE} ${TCL_ZIP_FILE} /tmp/macher_output; \
+ mv /tmp/macher_output ${TCL_EXE}; \
fi; \
${NATIVE_ZIP} -A ${TCL_EXE} \
|| echo 'ignore zip-error by adjust sfx process (not executable?)'; \