diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2015-07-27 19:40:27 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-01 07:34:08 +0100 |
commit | a1ec19cd9787f7600c8edb538579009f2a49265e (patch) | |
tree | 4c6ee1e431c66f7f50b2552ace2ef6a0115b470f /meta | |
parent | b76c9086209ad20e55723dca0b17d89a9d627dfc (diff) | |
download | poky-a1ec19cd9787f7600c8edb538579009f2a49265e.tar.gz |
distrodata.bbclass: do not skip -native recipes in checkpkg task
Some recipes are available only in the -native flavour, and we need to
check their upstream version too from the command line.
(From OE-Core rev: c63d1a544a3021a4eee2171fc710e71dfa7e6b07)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/distrodata.bbclass | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/classes/distrodata.bbclass b/meta/classes/distrodata.bbclass index a22824237c..af3af33133 100644 --- a/meta/classes/distrodata.bbclass +++ b/meta/classes/distrodata.bbclass | |||
@@ -218,9 +218,6 @@ python checkpkg_eventhandler() { | |||
218 | header = row | 218 | header = row |
219 | continue | 219 | continue |
220 | 220 | ||
221 | if '-native' in pn or 'nativesdk-' in pn: | ||
222 | continue | ||
223 | |||
224 | if not pn in package_dict.keys(): | 221 | if not pn in package_dict.keys(): |
225 | package_dict[pn] = row | 222 | package_dict[pn] = row |
226 | f.close() | 223 | f.close() |