diff options
author | Ross Burton <ross.burton@intel.com> | 2018-03-28 21:18:35 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-03-30 00:28:38 +0100 |
commit | f06a8d20560b8e93cf875ee58eddda0a976e7b14 (patch) | |
tree | 1c05881c816cdbcd88cd3bb350c8304845b887c7 /meta | |
parent | 7171e96f3a5f54c63674cf5282aea31bcb9cd7f9 (diff) | |
download | openembedded-core-f06a8d20560b8e93cf875ee58eddda0a976e7b14.tar.gz openembedded-core-f06a8d20560b8e93cf875ee58eddda0a976e7b14.tar.bz2 openembedded-core-f06a8d20560b8e93cf875ee58eddda0a976e7b14.zip |
python3: consolidate sqlite3 files
Some of the sqlite3 module was in python3-misc by accident, move the files
into python3-sqlite3 where they belong.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/python/python3/python3-manifest.json | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/recipes-devtools/python/python3/python3-manifest.json b/meta/recipes-devtools/python/python3/python3-manifest.json index 1914a4c43b..95071c53f5 100644 --- a/meta/recipes-devtools/python/python3/python3-manifest.json +++ b/meta/recipes-devtools/python/python3/python3-manifest.json @@ -977,9 +977,12 @@ "summary": "Python Simple Mail Transport Daemon" }, "sqlite3": { - "cached": [], + "cached": [ + "${libdir}/python3.5/sqlite3/__pycache__/*.pyc" + ], "files": [ - "${libdir}/python3.5/lib-dynload/_sqlite3.*.so" + "${libdir}/python3.5/lib-dynload/_sqlite3.*.so", + "${libdir}/python3.5/sqlite3/*.py" ], "rdepends": [ "core" |