aboutsummaryrefslogtreecommitdiff
path: root/Mk
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2017-06-08 06:50:00 +0000
committerMathieu Arnold <mat@FreeBSD.org>2017-06-08 06:50:00 +0000
commitc304fb63fde8798039df1ccc0bc5024c79dbaa0d (patch)
tree4f48f4d3fdf5ca3389dc6587fbf195ae069190ed /Mk
parent16600d0c13ebb140a18e1e559ddf3ae9c0ed9f6d (diff)
downloadports-c304fb63fde8798039df1ccc0bc5024c79dbaa0d.tar.gz
ports-c304fb63fde8798039df1ccc0bc5024c79dbaa0d.zip
Fix a few lib/pkgconfig → libdata/pkgconfig that crept in between the
exp-run and the commit. Reported by: antoine Sponsored by: Absolight
Notes
Notes: svn path=/head/; revision=442907
Diffstat (limited to 'Mk')
-rw-r--r--Mk/Uses/meson.mk14
1 files changed, 0 insertions, 14 deletions
diff --git a/Mk/Uses/meson.mk b/Mk/Uses/meson.mk
index 94245bd19e39..b3d4e0aca837 100644
--- a/Mk/Uses/meson.mk
+++ b/Mk/Uses/meson.mk
@@ -65,18 +65,4 @@ MESON_BUILD_DIR?= _build
# Add meson build dir at the end.
CONFIGURE_ARGS+= ${MESON_BUILD_DIR}
-# Add this workaround copied from https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=218067
-# to make sure meson installs the pkg-config in the current correct place
-.if !target(fixup-lib-pkgconfig)
-_USES_install+= 601:fixup-lib-pkgconfig
-fixup-lib-pkgconfig:
- @if [ -d ${STAGEDIR}${PREFIX}/lib/pkgconfig ]; then \
- if [ -z "$$(${FIND} ${STAGEDIR}${PREFIX}/lib/pkgconfig -maxdepth 0 -empty)" ]; then \
- ${MKDIR} ${STAGEDIR}${PREFIX}/libdata/pkgconfig; \
- ${MV} ${STAGEDIR}${PREFIX}/lib/pkgconfig/* ${STAGEDIR}${PREFIX}/libdata/pkgconfig; \
- fi; \
- ${RMDIR} ${STAGEDIR}${PREFIX}/lib/pkgconfig; \
- fi
-.endif
-
.endif #!defined(_INCLUDE_USES_MESON_MK)