summaryrefslogtreecommitdiffstats
path: root/meta/recipes-gnome
diff options
context:
space:
mode:
authorPeter Bergin <peter@berginkonsult.se>2025-03-19 17:13:27 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-03-20 11:29:04 +0000
commit0e32e1cb260aac59cabbbeba26f8f844978a75a0 (patch)
tree3eab4f1f279adb271a46b8db6f2e3d305d7bd7cf /meta/recipes-gnome
parent7517eed223cbe42efd022fdf759e846331847836 (diff)
downloadpoky-0e32e1cb260aac59cabbbeba26f8f844978a75a0.tar.gz
pkg-config-native,librsvg-native: fix EXTRA_NATIVE_PKGCONFIG_PATH
When building librsvg-native the variable PKG_CONFIG_PATH was incorrect in the bitbake environment but handled correct due to the pkg-config-native wrapper. Commit [1] and [2] introduced some inconsistens of EXTRA_NATIVE_PKGCONFIG_PATH where it was prepended in pkg-config-native wrappers but appended in native.bbclass. meta/classes-recipe/native.bbclass: PKG_CONFIG_PATH .= "${EXTRA_NATIVE_PKGCONFIG_PATH}" This commit will try to resolve this to always append the EXTRA_NATIVE_PKGCONFIG_PATH. It is tested by building librsvg-native and also checking bitbake environment before and after. [1] https://git.openembedded.org/openembedded-core/commit?id=2bc050146d47b14d890a1b0db2b55f9057a08b65 [2] https://git.openembedded.org/openembedded-core/commit?id=ae4824f4f6234884a245bce314d6305ad8eb982d (From OE-Core rev: a59fa4a4bf08bbbd79fbb1642b3e3b23181f87c9) Signed-off-by: Peter Bergin <peter@berginkonsult.se> Cc: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome')
-rw-r--r--meta/recipes-gnome/librsvg/librsvg_2.59.2.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-gnome/librsvg/librsvg_2.59.2.bb b/meta/recipes-gnome/librsvg/librsvg_2.59.2.bb
index 7718f2bb48..983fc75eed 100644
--- a/meta/recipes-gnome/librsvg/librsvg_2.59.2.bb
+++ b/meta/recipes-gnome/librsvg/librsvg_2.59.2.bb
@@ -34,7 +34,7 @@ UPSTREAM_CHECK_REGEX = "librsvg-(?P<pver>\d+\.\d+\.(?!9\d+)\d+)"
34# for cargo to be happy 34# for cargo to be happy
35BASEDEPENDS:append = " cargo-native" 35BASEDEPENDS:append = " cargo-native"
36 36
37export EXTRA_NATIVE_PKGCONFIG_PATH = "${B}/meson-uninstalled:" 37export EXTRA_NATIVE_PKGCONFIG_PATH = ":${B}/meson-uninstalled"
38export RUST_BACKTRACE = "full" 38export RUST_BACKTRACE = "full"
39export RUSTFLAGS 39export RUSTFLAGS
40 40