summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2023-01-29 10:37:31 -0800
committerKhem Raj <raj.khem@gmail.com>2023-01-29 21:09:39 -0800
commit9058607283755228c263547132bddcb1d032f20e (patch)
treefde929338abd5b34c2d87caa17f0582a2f42e533
parent469b1a52f41431b41cd9552cea44c8e7c4497bd0 (diff)
downloadmeta-openembedded-9058607283755228c263547132bddcb1d032f20e.tar.gz
hplip: Inherit python3targetconfig
It uses python3-config during build to grok the python specific includedirs, therefore its important to ensure that target specific python3-config is used, otherwise currently it defaults to native python3-config which ends up adding native python3 include paths which might work out ok but is exposed when target is 32bit + lfs enabled, the headers don't match between native and target python Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-devtools/mercurial/mercurial_6.1.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-devtools/mercurial/mercurial_6.1.bb b/meta-oe/recipes-devtools/mercurial/mercurial_6.1.bb
index 3abecc3054..a415ebc1e8 100644
--- a/meta-oe/recipes-devtools/mercurial/mercurial_6.1.bb
+++ b/meta-oe/recipes-devtools/mercurial/mercurial_6.1.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
7DEPENDS = "python3 python3-native" 7DEPENDS = "python3 python3-native"
8RDEPENDS:${PN} = "python3 python3-modules" 8RDEPENDS:${PN} = "python3 python3-modules"
9 9
10inherit python3native 10inherit python3native python3targetconfig
11 11
12SRC_URI = "https://www.mercurial-scm.org/release/${BP}.tar.gz" 12SRC_URI = "https://www.mercurial-scm.org/release/${BP}.tar.gz"
13SRC_URI[sha256sum] = "86f98645e4565a9256991dcde22b77b8e7d22ca6fbb60c1f4cdbd8469a38cc1f" 13SRC_URI[sha256sum] = "86f98645e4565a9256991dcde22b77b8e7d22ca6fbb60c1f4cdbd8469a38cc1f"