From: Mike Gilbert Date: Sun, 3 May 2020 20:43:41 +0000 (-0400) Subject: meson.eclass: ignore PKG_CONFIG_PATH due to Portage bug X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e569e669447a74c2269a0d0f86f53af70fe19284;p=gentoo.git meson.eclass: ignore PKG_CONFIG_PATH due to Portage bug Bug: https://bugs.gentoo.org/720866 Signed-off-by: Mike Gilbert --- diff --git a/eclass/meson.eclass b/eclass/meson.eclass index 2d2685ca72ad..0dfdcdd03d6a 100644 --- a/eclass/meson.eclass +++ b/eclass/meson.eclass @@ -323,8 +323,8 @@ meson_src_configure() { --prefix "${EPREFIX}/usr" --sysconfdir "${EPREFIX}/etc" --wrap-mode nodownload - --build.pkg-config-path "${BUILD_PKG_CONFIG_PATH:-${EPREFIX}/usr/share/pkgconfig}" - --pkg-config-path "${PKG_CONFIG_PATH:-${EPREFIX}/usr/share/pkgconfig}" + --build.pkg-config-path "${EPREFIX}/usr/share/pkgconfig" + --pkg-config-path "${EPREFIX}/usr/share/pkgconfig" --native-file "$(_meson_create_native_file)" )