summaryrefslogtreecommitdiffstats
path: root/unix/Makefile.in
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2021-02-15 07:47:33 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2021-02-15 07:47:33 (GMT)
commit0d7614dd81f9fba7b15f5d1e3fc174b6d1e8038d (patch)
tree1461111c0a7487dc49aa2099208e1c6d04598a52 /unix/Makefile.in
parent6fcd32ac08f4b7f5d4dd5a52c5d18ddc70dea857 (diff)
downloadtcl-0d7614dd81f9fba7b15f5d1e3fc174b6d1e8038d.zip
tcl-0d7614dd81f9fba7b15f5d1e3fc174b6d1e8038d.tar.gz
tcl-0d7614dd81f9fba7b15f5d1e3fc174b6d1e8038d.tar.bz2
Missing semicolon in UNIX Makefile
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r--unix/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index aa54fbe..32b99a2 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -796,7 +796,7 @@ ${LIB_FILE}: ${STUB_LIB_FILE} ${OBJS} ${TCL_ZIP_FILE}
if test "x$(MACHER)" = "x" ; then \
cat ${TCL_ZIP_FILE} >> ${LIB_FILE}; \
else $(MACHER) append ${LIB_FILE} ${TCL_ZIP_FILE} /tmp/macher_output; \
- mv /tmp/macher_output ${LIB_FILE}; chmod u+x ${LIB_FILE} \
+ mv /tmp/macher_output ${LIB_FILE}; chmod u+x ${LIB_FILE}; \
fi; \
${NATIVE_ZIP} -A ${LIB_FILE} \
|| echo 'ignore zip-error by adjust sfx process (not executable?)'; \
@@ -827,7 +827,7 @@ ${TCL_EXE}: ${TCLSH_OBJS} ${TCL_LIB_FILE} ${TCL_STUB_LIB_FILE} ${TCL_ZIP_FILE}
if test "x$(MACHER)" = "x" ; then \
cat ${TCL_ZIP_FILE} >> ${TCL_EXE}; \
else $(MACHER) append ${TCL_EXE} ${TCL_ZIP_FILE} /tmp/macher_output; \
- mv /tmp/macher_output ${TCL_EXE}; chmod u+x ${TCL_EXE} \
+ mv /tmp/macher_output ${TCL_EXE}; chmod u+x ${TCL_EXE}; \
fi; \
${NATIVE_ZIP} -A ${TCL_EXE} \
|| echo 'ignore zip-error by adjust sfx process (not executable?)'; \