Date: Mon, 26 Feb 2024 23:18:25 GMT From: Ed Maste <emaste@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 26db5b3e638e - stable/14 - Remove MOVED_LIBS handling from list-old-libs Message-ID: <202402262318.41QNIPcp012548@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=26db5b3e638ee09a21b6554003a2257fd6e285a4 commit 26db5b3e638ee09a21b6554003a2257fd6e285a4 Author: Ed Maste <emaste@FreeBSD.org> AuthorDate: 2023-10-16 12:46:31 +0000 Commit: Ed Maste <emaste@FreeBSD.org> CommitDate: 2024-02-26 23:18:08 +0000 Remove MOVED_LIBS handling from list-old-libs In 922337e8d398 I added MOVED_LIBS into list-old-files, so that delete-old-files would remove the old /usr/lib/libc++.so.1 as soon as possible (after the library moved to /lib). I left it in list-old-libs in case a user updated their src tree between delete-old-files and delete-old-libs. Now that some time has passed, tremove the redundant MOVED_LIBS entry. PR: 272642 Sponsored by: The FreeBSD Foundation (cherry picked from commit f38bad0ab0fca9b1f665b2ba79098edf993c0854) --- Makefile.inc1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index 2177ffb7cb27..2c3d96360129 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -3459,7 +3459,7 @@ check-old-files: .PHONY list-old-libs: .PHONY @cd ${.CURDIR}; \ ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ - -V "OLD_LIBS:ts\n" -V "MOVED_LIBS:ts\n" \ + -V "OLD_LIBS:ts\n" \ ${_ALL_libcompats:@v@-V "OLD_LIBS:Mlib/*:S,^lib,usr/lib$v,:ts\n"@} \ ${_ALL_libcompats:@v@-V "OLD_LIBS:Musr/lib/*:S,^usr/lib,usr/lib$v,:ts\n"@} \ ${_ALL_libcompats:@v@-V "OLD_LIBS:Mlib/casper/*:S,^lib/casper,usr/lib$v,:ts\n"@} | \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202402262318.41QNIPcp012548>