diff options
author | Anders Darander <anders@chargestorm.se> | 2017-01-27 08:50:59 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-05 09:20:19 +0000 |
commit | bfe1d948ab034017622110c8365be7026e139fbf (patch) | |
tree | 7339f03ff930b97d287655f6662df06309b0ca28 /scripts | |
parent | 5bd23c01fd800c43ba3979b23585fe8ac30d7ec8 (diff) | |
download | openembedded-core-bfe1d948ab034017622110c8365be7026e139fbf.tar.gz openembedded-core-bfe1d948ab034017622110c8365be7026e139fbf.tar.bz2 openembedded-core-bfe1d948ab034017622110c8365be7026e139fbf.zip |
python-3-manifest: fix adding imp to importlib
Commit: 512334f102a33833d39af53467894315f0715d07
"python-3.5-manifest: Add imp to importlib"
added imp to importlib in the generated manifest, but not in the generator script.
Signed-off-by: Anders Darander <anders@chargestorm.se>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts')
-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 7259543098..cf19f477ab 100755 --- a/scripts/contrib/python/generate-manifest-3.5.py +++ b/scripts/contrib/python/generate-manifest-3.5.py @@ -279,7 +279,7 @@ if __name__ == "__main__": "formatter.* htmlentitydefs.* htmllib.* markupbase.* sgmllib.* HTMLParser.* " ) m.addPackage( "${PN}-importlib", "Python import implementation library", "${PN}-core ${PN}-lang", - "importlib" ) + "importlib imp.*" ) m.addPackage( "${PN}-gdbm", "Python GNU database support", "${PN}-core", "lib-dynload/_gdbm.*.so" ) |