diff options
author | Ross Burton <ross.burton@intel.com> | 2018-09-14 12:28:21 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-09-21 18:45:46 -0700 |
commit | d21d958c5b0e153fc57d9637c8daf9fd5294c722 (patch) | |
tree | a79e953b2833e6f93c2f1b95b11127da6999c5ff | |
parent | e6aea815de48459e1910e58a9eda58aab57d5bbf (diff) | |
download | poky-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>
-rw-r--r-- | meta/recipes-devtools/python/python3/create_manifest3.py | 2 |
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] |