Tcl Source Code

Check-in [af4865b183]
Login
EuroTcl/OpenACS 11 - 12 JULY 2024, VIENNA

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix for issue [718de2132f487cf2], "review use of strip on the stubs library".
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | main
Files: files | file ages | folders
SHA3-256: af4865b1833e01b7382f434d4e0abde81fd870b47fccca17fc8ed41b95d5310a
User & Date: pooryorick 2023-04-14 11:49:36
References
2023-04-14
11:53 Ticket [718de2132f] review use of strip on the stubs library status still Open with 5 other changes artifact: 94abe97662 user: pooryorick
Context
2023-04-14
21:42
Merge 8.7 check-in: 5b5f4f1482 user: jan.nijtmans tags: trunk, main
12:16
Merge trunk. check-in: 1857d9f552 user: pooryorick tags: tip-653
11:49
Fix for issue [718de2132f487cf2], "review use of strip on the stubs library". check-in: af4865b183 user: pooryorick tags: trunk, main
11:46
Fix for issue [718de2132f487cf2], "review use of strip on the stubs library". check-in: 39514b5729 user: pooryorick tags: core-8-branch
09:19
New test for [gets] with strict encoding. Also add "\" in io-76.9, missing in last commit. check-in: 567407c1cd user: pooryorick tags: trunk, main
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to unix/Makefile.in.

147
148
149
150
151
152
153

154
155
156
157
158
159
160
161

# Tcl used to let the configure script choose which program to use for
# installing, but there are just too many different versions of "install"
# around; better to use the install-sh script that comes with the
# distribution, which is slower but guaranteed to work.

INSTALL_STRIP_PROGRAM	= -s

INSTALL_STRIP_LIBRARY	= -S -x

INSTALL			= $(SHELL) $(UNIX_DIR)/install-sh -c
INSTALL_PROGRAM		= ${INSTALL}
INSTALL_LIBRARY		= ${INSTALL}
INSTALL_DATA		= ${INSTALL} -m 644
INSTALL_DATA_DIR	= ${INSTALL} -d -m 755








>
|







147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162

# Tcl used to let the configure script choose which program to use for
# installing, but there are just too many different versions of "install"
# around; better to use the install-sh script that comes with the
# 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			= $(SHELL) $(UNIX_DIR)/install-sh -c
INSTALL_PROGRAM		= ${INSTALL}
INSTALL_LIBRARY		= ${INSTALL}
INSTALL_DATA		= ${INSTALL} -m 644
INSTALL_DATA_DIR	= ${INSTALL} -d -m 755