aboutsummaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2018-09-28 17:06:15 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-09-29 13:26:41 +0100
commitb4bd4e7e26bb79223129abb9fb6e22e9045e3707 (patch)
treea45b8582a2de135d424fcb094a84c634c5e71fa6 /meta
parent4e397e16996662bce51608cf5e20448b9803c476 (diff)
downloadopenembedded-core-contrib-b4bd4e7e26bb79223129abb9fb6e22e9045e3707.tar.gz
python: mark the tests modules as special when updating the manifest
We manually maintain the tests package's content and dependencies, so mark is as special (matching create_manifest3.py). 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/recipes-devtools/python/python/create_manifest2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python/create_manifest2.py b/meta/recipes-devtools/python/python/create_manifest2.py
index 1af1443f47..87999991d7 100644
--- a/meta/recipes-devtools/python/python/create_manifest2.py
+++ b/meta/recipes-devtools/python/python/create_manifest2.py
@@ -137,7 +137,7 @@ for key in old_manifest:
# Handle special cases, we assume that when they were manually added
# to the manifest we knew what we were doing.
print ('Handling package %s' % key)
- special_packages=['misc', 'modules', 'dev']
+ special_packages=['misc', 'modules', 'tests', 'dev']
if key in special_packages or 'staticdev' in key:
print('Passing %s package directly' % key)
new_manifest[key]=old_manifest[key]