diff options
author | Anders Darander <anders@chargestorm.se> | 2017-01-27 09:07:17 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-05 09:20:19 +0000 |
commit | 6c435672b27d1c97ce3776c98d073a92fde887cd (patch) | |
tree | 2fc34284a2ebcd6c60c5f5f755398672478dfecd /scripts/contrib | |
parent | 8aa71c7133f996f6ed09a3c094e553bed7f33c7a (diff) | |
download | openembedded-core-6c435672b27d1c97ce3776c98d073a92fde887cd.tar.gz openembedded-core-6c435672b27d1c97ce3776c98d073a92fde887cd.tar.bz2 openembedded-core-6c435672b27d1c97ce3776c98d073a92fde887cd.zip |
python-3-manifest: add _compat_pickle to python3-pickle
This allows us to depend on _compat_pickle.* wihtout having to add the whole
python3-misc.
Signed-off-by: Anders Darander <anders@chargestorm.se>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts/contrib')
-rwxr-xr-x | scripts/contrib/python/generate-manifest-3.5.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/contrib/python/generate-manifest-3.5.py b/scripts/contrib/python/generate-manifest-3.5.py index 770ef754e6..1a06896b5c 100755 --- a/scripts/contrib/python/generate-manifest-3.5.py +++ b/scripts/contrib/python/generate-manifest-3.5.py @@ -329,7 +329,7 @@ if __name__ == "__main__": "decimal.* fractions.* numbers.*" ) m.addPackage( "${PN}-pickle", "Python serialisation/persistence support", "${PN}-core ${PN}-codecs ${PN}-io ${PN}-re", - "pickle.* shelve.* lib-dynload/cPickle.*.so pickletools.*" ) + "_compat_pickle.* pickle.* shelve.* lib-dynload/cPickle.*.so pickletools.*" ) m.addPackage( "${PN}-pkgutil", "Python package extension utility support", "${PN}-core", "pkgutil.*") |