diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2025-07-23 17:55:41 +0200 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2025-07-24 10:44:29 +0200 |
| commit | 42c7fa35dcb9fd63e338ef6ac1a7e8b5fe4ca173 (patch) | |
| tree | 297a0e60ca3cb79f7bf8f67e8ba9f93a198e7e3f | |
| parent | www/gitlab: security and patch update to 18.2.1 (diff) | |
Mk/bsd.port.mk: remove developer recommendations to apply pathfix
The framework is already dealing with making sure the .pc files in
lib/pkgconfig are moved to libdata/pkgconfig since 2017
The other location where .pc files can be installed (share/pkgconfig)
is valid since 2022, so pathfix to deal with .pc files is now useless.
Reviewed by: mat (over matrix)
Differential Revision: https://reviews.freebsd.org/D51476
| -rw-r--r-- | Mk/bsd.port.mk | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index fb3e0cc839eb..0aa79aed7ed0 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -3600,10 +3600,6 @@ install-ldconfig-file: fixup-lib-pkgconfig: @if [ -d ${STAGEDIR}${PREFIX}/lib/pkgconfig ]; then \ if [ -z "$$(${FIND} ${STAGEDIR}${PREFIX}/lib/pkgconfig -maxdepth 0 -empty)" ]; then \ - if [ -n "${DEVELOPER:Dyes}" ]; then \ - ${ECHO_MSG} "===> File(s) found in lib/pkgconfig while correct path is libdata/pkgconfig"; \ - ${ECHO_MSG} " Applying fix but consider using USES= pathfix or adjust install path"; \ - fi; \ ${MKDIR} ${STAGEDIR}${PREFIX}/libdata/pkgconfig; \ ${MV} ${STAGEDIR}${PREFIX}/lib/pkgconfig/* ${STAGEDIR}${PREFIX}/libdata/pkgconfig; \ fi; \ |
