aboutsummaryrefslogtreecommitdiffstats
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 08:15:19 -0700
commit30eadb119a64d8561b946d5b8ee30244caeaf134 (patch)
treea81453a3a26da3ae85704a74b7bb9b9797a14220
parent554d3690dab49fee3c93b6b677eb3ef58cff64c1 (diff)
downloadopenembedded-core-contrib-30eadb119a64d8561b946d5b8ee30244caeaf134.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. Signed-off-by: Ross Burton <ross.burton@intel.com>
-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:
# Handle special cases, we assume that when they were manually added
# to the manifest we knew what we were doing.
- special_packages = ['misc', 'modules', 'dev', 'tests', 'sqlite3-tests']
+ special_packages = ['misc', 'modules', 'dev', 'tests']
if pypkg in special_packages or 'staticdev' in pypkg:
print('Passing %s package directly' % pypkg)
new_manifest[pypkg] = old_manifest[pypkg]