summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python
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-10-01 13:04:49 +0100
commitf27fc7f336d3a136a278757d14a46a0ff8f8b2d7 (patch)
tree4e0be2d861a8f15e07a268ed6aeba038bcb5c719 /meta/recipes-devtools/python/python
parentf51d0a19afeb3cf9b5bad6e3b470b2a8fb6065f8 (diff)
downloadpoky-f27fc7f336d3a136a278757d14a46a0ff8f8b2d7.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). (From OE-Core rev: b4bd4e7e26bb79223129abb9fb6e22e9045e3707) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python')
-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:
137 # Handle special cases, we assume that when they were manually added 137 # Handle special cases, we assume that when they were manually added
138 # to the manifest we knew what we were doing. 138 # to the manifest we knew what we were doing.
139 print ('Handling package %s' % key) 139 print ('Handling package %s' % key)
140 special_packages=['misc', 'modules', 'dev'] 140 special_packages=['misc', 'modules', 'tests', 'dev']
141 if key in special_packages or 'staticdev' in key: 141 if key in special_packages or 'staticdev' in key:
142 print('Passing %s package directly' % key) 142 print('Passing %s package directly' % key)
143 new_manifest[key]=old_manifest[key] 143 new_manifest[key]=old_manifest[key]