summaryrefslogtreecommitdiffstats
path: root/unix/Makefile.in
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2018-10-22 18:21:23 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2018-10-22 18:21:23 (GMT)
commitcee756478e65a985a7c60c9b457748de69693007 (patch)
tree6d06539f780da93443539ec6ce4a0024e61e306f /unix/Makefile.in
parent251798717672709f93ba749470e08c8541ea9bcf (diff)
downloadtcl-cee756478e65a985a7c60c9b457748de69693007.zip
tcl-cee756478e65a985a7c60c9b457748de69693007.tar.gz
tcl-cee756478e65a985a7c60c9b457748de69693007.tar.bz2
Fix error-message on MacOS: the __LINKEDIT segment does not cover the end of the file.
Reason: We appended a zip-file to the end of the library, so during install "strip" doesn't work any more
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r--unix/Makefile.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 487ae61..b2ea458 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -858,8 +858,7 @@ install: $(INSTALL_TARGETS)
install-strip:
$(MAKE) $(INSTALL_TARGETS) \
- INSTALL_PROGRAM="$(INSTALL_PROGRAM) ${INSTALL_STRIP_PROGRAM}" \
- INSTALL_LIBRARY="$(INSTALL_LIBRARY) ${INSTALL_STRIP_LIBRARY}"
+ INSTALL_PROGRAM="$(INSTALL_PROGRAM) ${INSTALL_STRIP_PROGRAM}"
install-binaries: binaries
@for i in "$(LIB_INSTALL_DIR)" "$(BIN_INSTALL_DIR)" \