diff options
author | pooryorick <com.digitalsmarties@pooryorick.com> | 2023-04-14 11:40:11 (GMT) |
---|---|---|
committer | pooryorick <com.digitalsmarties@pooryorick.com> | 2023-04-14 11:40:11 (GMT) |
commit | 0000e98387b76863afc7e061f08b41fbc5a77762 (patch) | |
tree | 29da26791b90e6c0ea994475ed067cba841f84e4 | |
parent | 50f141d888ff2170dfd1a6bfe34c65a4df087307 (diff) | |
download | tcl-0000e98387b76863afc7e061f08b41fbc5a77762.zip tcl-0000e98387b76863afc7e061f08b41fbc5a77762.tar.gz tcl-0000e98387b76863afc7e061f08b41fbc5a77762.tar.bz2 |
Fix for issue [718de2132f487cf2], "review use of strip on the stubs library".
-rw-r--r-- | unix/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 21d4085..2f28fcf 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} |