summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2018-09-14 12:28:21 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-09-21 18:45:46 -0700
commitd21d958c5b0e153fc57d9637c8daf9fd5294c722 (patch)
treea79e953b2833e6f93c2f1b95b11127da6999c5ff /meta
parente6aea815de48459e1910e58a9eda58aab57d5bbf (diff)
downloadpoky-d21d958c5b0e153fc57d9637c8daf9fd5294c722.tar.gz
python3: remove specal handling of sqite3-tests
This package doesn't exist anymore so the manifest tool doesn't need to handle it specially. (From OE-Core rev: 30eadb119a64d8561b946d5b8ee30244caeaf134) 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/python3/create_manifest3.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python3/create_manifest3.py b/meta/recipes-devtools/python/python3/create_manifest3.py
index efef62af94..fddb23cdc4 100644
--- a/meta/recipes-devtools/python/python3/create_manifest3.py
+++ b/meta/recipes-devtools/python/python3/create_manifest3.py
@@ -214,7 +214,7 @@ for pypkg in old_manifest:
214 214
215 # Handle special cases, we assume that when they were manually added 215 # Handle special cases, we assume that when they were manually added
216 # to the manifest we knew what we were doing. 216 # to the manifest we knew what we were doing.
217 special_packages = ['misc', 'modules', 'dev', 'tests', 'sqlite3-tests'] 217 special_packages = ['misc', 'modules', 'dev', 'tests']
218 if pypkg in special_packages or 'staticdev' in pypkg: 218 if pypkg in special_packages or 'staticdev' in pypkg:
219 print('Passing %s package directly' % pypkg) 219 print('Passing %s package directly' % pypkg)
220 new_manifest[pypkg] = old_manifest[pypkg] 220 new_manifest[pypkg] = old_manifest[pypkg]