diff options
author | mat <mat@FreeBSD.org> | 2017-06-08 14:50:00 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2017-06-08 14:50:00 +0800 |
commit | a194843154c3310210e49efa9a177249bf6a750e (patch) | |
tree | 4f48f4d3fdf5ca3389dc6587fbf195ae069190ed /Mk | |
parent | e4a520e2d6a516916333d4df43a7ffcb67deff79 (diff) | |
download | freebsd-ports-gnome-a194843154c3310210e49efa9a177249bf6a750e.tar.gz freebsd-ports-gnome-a194843154c3310210e49efa9a177249bf6a750e.tar.zst freebsd-ports-gnome-a194843154c3310210e49efa9a177249bf6a750e.zip |
Fix a few lib/pkgconfig → libdata/pkgconfig that crept in between the
exp-run and the commit.
Reported by: antoine
Sponsored by: Absolight
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/Uses/meson.mk | 14 |
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) |