diff options
author | pooryorick <com.digitalsmarties@pooryorick.com> | 2023-04-14 11:49:36 (GMT) |
---|---|---|
committer | pooryorick <com.digitalsmarties@pooryorick.com> | 2023-04-14 11:49:36 (GMT) |
commit | 810eabe0ef54571b618cd19dc46dafcd04248380 (patch) | |
tree | 79fbf2230e7d4835e6b670021d8500e33171ccc8 /unix | |
parent | c8259f4fec6e8f919b3acd7952b80d8f66bd2ef2 (diff) | |
parent | 3ecc8df3dcc710721c37de18907f638d5d4877ee (diff) | |
download | tcl-810eabe0ef54571b618cd19dc46dafcd04248380.zip tcl-810eabe0ef54571b618cd19dc46dafcd04248380.tar.gz tcl-810eabe0ef54571b618cd19dc46dafcd04248380.tar.bz2 |
Fix for issue [718de2132f487cf2], "review use of strip on the stubs library".
Diffstat (limited to 'unix')
-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 1bf5814..050b808 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} |