diff options
author | Mike Gilbert <floppym@gentoo.org> | 2020-05-03 16:43:41 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2020-05-03 16:43:41 -0400 |
commit | e569e669447a74c2269a0d0f86f53af70fe19284 (patch) | |
tree | 44e1c63acb04d03cd5012999ba2ade37472b828b /eclass | |
parent | sys-block/open-iscsi: drop -Werror (diff) | |
download | gentoo-e569e669447a74c2269a0d0f86f53af70fe19284.tar.gz gentoo-e569e669447a74c2269a0d0f86f53af70fe19284.tar.bz2 gentoo-e569e669447a74c2269a0d0f86f53af70fe19284.zip |
meson.eclass: ignore PKG_CONFIG_PATH due to Portage bug
Bug: https://bugs.gentoo.org/720866
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/meson.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
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)" ) |