From: Anders Darander Date: Fri, 27 Jan 2017 07:50:59 +0000 (+0100) Subject: python-3-manifest: fix adding imp to importlib X-Git-Tag: uninative-1.5~445 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=bfe1d948ab034017622110c8365be7026e139fbf;p=openembedded-core.git 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 Signed-off-by: Ross Burton --- 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" )