mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
d178745cbf
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>
34 lines
1.2 KiB
Diff
34 lines
1.2 KiB
Diff
From 0a61b0b98c152f10404ccbdeeac583a486638a7a Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
|
|
Date: Thu, 6 Jun 2013 18:36:01 +0200
|
|
Subject: [PATCH] js.pc.in: do not include RequiredDefines.h for depending
|
|
packages
|
|
|
|
in our cross environment the would fail with:
|
|
|
|
| cc1: fatal error: /usr/include/js-17.0/js/RequiredDefines.h: No such file or directory
|
|
|
|
and currently it only defines __STDC_LIMIT_MACROS
|
|
Upstream-Status: Inappropriate [embedded specific]
|
|
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
|
|
|
|
Rebase to 52.8.1
|
|
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
|
---
|
|
js/src/build/js.pc.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/js/src/build/js.pc.in b/js/src/build/js.pc.in
|
|
index 2eae393..c2dea62 100644
|
|
--- a/js/src/build/js.pc.in
|
|
+++ b/js/src/build/js.pc.in
|
|
@@ -8,4 +8,4 @@ Description: The Mozilla library for JavaScript
|
|
Version: @MOZILLA_VERSION@
|
|
@PKGCONF_REQUIRES_PRIVATE@
|
|
Libs: -L${libdir} -l@JS_LIBRARY_NAME@
|
|
-Cflags: -include ${includedir}/@JS_LIBRARY_NAME@/js/RequiredDefines.h -I${includedir}/@JS_LIBRARY_NAME@
|
|
+Cflags: -I${includedir}/@JS_LIBRARY_NAME@
|
|
--
|
|
2.7.4
|
|
|