summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpooryorick <com.digitalsmarties@pooryorick.com>2023-04-14 11:46:27 (GMT)
committerpooryorick <com.digitalsmarties@pooryorick.com>2023-04-14 11:46:27 (GMT)
commit3ecc8df3dcc710721c37de18907f638d5d4877ee (patch)
tree1ad44c64209a3583dbe747f1cd329766fee845f0
parentee84d52e390aa68fc33193c42203272d42ba500d (diff)
parent0000e98387b76863afc7e061f08b41fbc5a77762 (diff)
downloadtcl-3ecc8df3dcc710721c37de18907f638d5d4877ee.zip
tcl-3ecc8df3dcc710721c37de18907f638d5d4877ee.tar.gz
tcl-3ecc8df3dcc710721c37de18907f638d5d4877ee.tar.bz2
Fix for issue [718de2132f487cf2], "review use of strip on the stubs library".
-rw-r--r--unix/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index e092a2d..614072f 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -151,7 +151,8 @@ SHELL = @MAKEFILE_SHELL@
# distribution, which is slower but guaranteed to work.
INSTALL_STRIP_PROGRAM = -s
-INSTALL_STRIP_LIBRARY = -S -x
+# Use --strip-unneeded instead of -x. See issue 718de2132f487cf2
+INSTALL_STRIP_LIBRARY = -S --strip-unneeded
INSTALL = $(SHELL) $(UNIX_DIR)/install-sh -c
INSTALL_PROGRAM = ${INSTALL}