diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2013-12-03 06:03:50 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-09 11:04:14 +0000 |
commit | 01a023a5d8c5401412d530bc68ec8582df79a71a (patch) | |
tree | 1936eeed40789a0371a20a0155a4826083673191 | |
parent | e58a1499accd74d3e6fe4f899711d4c680ebc18f (diff) | |
download | poky-01a023a5d8c5401412d530bc68ec8582df79a71a.tar.gz |
nativesdk.bbclass: support nativesdk to override with the PACKAGES_DYNAMIC statement
While compiling nativesdk-mtools, there was failure:
...
Nothing PROVIDES 'nativesdk-glibc-gconv-ibm850'. Close matches:
...
This patch supports nativesdk to override with the PACKAGES_DYNAMIC statement
[YOCTO #5623]
(From OE-Core master rev: 315367ea9526186d5836c64867ce0cd40d9d8412)
(From OE-Core rev: a2f8a7e2fb868b8dc00d1f50fffb5744d4d34e72)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/nativesdk.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/nativesdk.bbclass b/meta/classes/nativesdk.bbclass index 94bc326671..21a69c7ee6 100644 --- a/meta/classes/nativesdk.bbclass +++ b/meta/classes/nativesdk.bbclass | |||
@@ -81,6 +81,7 @@ python () { | |||
81 | clsextend.map_depends_variable("DEPENDS") | 81 | clsextend.map_depends_variable("DEPENDS") |
82 | clsextend.map_packagevars() | 82 | clsextend.map_packagevars() |
83 | clsextend.map_variable("PROVIDES") | 83 | clsextend.map_variable("PROVIDES") |
84 | clsextend.map_regexp_variable("PACKAGES_DYNAMIC") | ||
84 | } | 85 | } |
85 | 86 | ||
86 | addhandler nativesdk_virtclass_handler | 87 | addhandler nativesdk_virtclass_handler |