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-07-31 15:35:36 +0100 |
commit | c63d1a544a3021a4eee2171fc710e71dfa7e6b07 (patch) | |
tree | 696d6b4b4bbd50530c8d2747ca958b98703b7303 /meta/classes/distrodata.bbclass | |
parent | 6a68e5d9ee6122f0ed70396569eb6cd1a3297c9d (diff) | |
download | openembedded-core-c63d1a544a3021a4eee2171fc710e71dfa7e6b07.tar.gz openembedded-core-c63d1a544a3021a4eee2171fc710e71dfa7e6b07.tar.bz2 openembedded-core-c63d1a544a3021a4eee2171fc710e71dfa7e6b07.zip |
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.
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/classes/distrodata.bbclass')
-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() { header = row continue - if '-native' in pn or 'nativesdk-' in pn: - continue - if not pn in package_dict.keys(): package_dict[pn] = row f.close() |