diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-04-15 19:02:44 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-04-15 19:02:44 (GMT) |
commit | 788236542834710698cace10523d24ae7143279d (patch) | |
tree | d4a6b1f9fe5a4d1c0d947f944ac4fb083d7d9e13 /unix/Makefile.in | |
parent | 0000e98387b76863afc7e061f08b41fbc5a77762 (diff) | |
download | tcl-788236542834710698cace10523d24ae7143279d.zip tcl-788236542834710698cace10523d24ae7143279d.tar.gz tcl-788236542834710698cace10523d24ae7143279d.tar.bz2 |
Backout fix for [718de2132f487cf2]: It breaks on MacOS and other systems which don't support the --strip-unneeded option
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 2f28fcf..21d4085 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -151,8 +151,7 @@ SHELL = @MAKEFILE_SHELL@ # distribution, which is slower but guaranteed to work. INSTALL_STRIP_PROGRAM = -s -# Use --strip-unneeded instead of -x. See issue 718de2132f487cf2 -INSTALL_STRIP_LIBRARY = -S --strip-unneeded +INSTALL_STRIP_LIBRARY = -S -x INSTALL = $(SHELL) $(UNIX_DIR)/install-sh -c INSTALL_PROGRAM = ${INSTALL} |