mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-17 04:05:53 +00:00
some recipes under meta-oe have dependency on meta-python, and test_world of yocto-check-layer will failed with error like: ERROR: test_world (common.CommonCheckLayer) ERROR: Nothing PROVIDES 'python3-pytoml-native' (but /meta-openembedded/meta-oe/recipes-extended/mozjs/mozjs_60.9.0.bb DEPENDS on or otherwise requires it). Close matches: python3-numpy-native python3-pycairo-native python3-rpm-native ERROR: Required build target 'meta-world-pkgdata' has no buildable providers. Missing or unbuildable dependency chain was: ['meta-world-pkgdata', 'mozjs', 'python3-pytoml-native'] fix by make these recipes only active when identified layers are present Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
29 lines
958 B
Diff
29 lines
958 B
Diff
From 646a78262b18e19721cd41ee515215221dd241b6 Mon Sep 17 00:00:00 2001
|
|
From: Hongxu Jia <hongxu.jia@windriver.com>
|
|
Date: Thu, 12 Jul 2018 18:12:42 +0800
|
|
Subject: [PATCH 3/5] workaround autoconf 2.13 detection failed
|
|
|
|
Upstream-Status: Inappropriate [oe specific]
|
|
|
|
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
|
---
|
|
build/moz.configure/old.configure | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/build/moz.configure/old.configure b/build/moz.configure/old.configure
|
|
index b32c3f7..ece47f4 100644
|
|
--- a/build/moz.configure/old.configure
|
|
+++ b/build/moz.configure/old.configure
|
|
@@ -31,7 +31,7 @@ def autoconf(mozconfig, autoconf):
|
|
autoconf = autoconf[0] if autoconf else None
|
|
|
|
for ac in (mozconfig_autoconf, autoconf, 'autoconf-2.13', 'autoconf2.13',
|
|
- 'autoconf213'):
|
|
+ 'autoconf213', 'autoconf'):
|
|
if ac:
|
|
autoconf = find_program(ac)
|
|
if autoconf:
|
|
--
|
|
2.7.4
|
|
|