diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/python/python/create_manifest2.py | 2 |
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] |