summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAnders Darander <anders@chargestorm.se>2017-02-13 16:06:56 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-05-18 13:07:32 +0100
commit53b19e7e7fa44b7d04fced41e409282b39705b1b (patch)
tree5e930760ef8d8e4ce9e57a0996c8f5287ba847f3 /scripts
parent3305872894552d7d1d486ca4441b1a7c5a39bf6e (diff)
downloadpoky-53b19e7e7fa44b7d04fced41e409282b39705b1b.tar.gz
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. (From OE-Core rev: 70bea8d0be82781ce615794434225418cce63a90) Signed-off-by: Anders Darander <anders@chargestorm.se> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/contrib/python/generate-manifest-3.5.py2
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 2906cc66d0..71a71f7afc 100755
--- a/scripts/contrib/python/generate-manifest-3.5.py
+++ b/scripts/contrib/python/generate-manifest-3.5.py
@@ -269,7 +269,7 @@ if __name__ == "__main__":
269 "formatter.* htmlentitydefs.* htmllib.* markupbase.* sgmllib.* HTMLParser.* " ) 269 "formatter.* htmlentitydefs.* htmllib.* markupbase.* sgmllib.* HTMLParser.* " )
270 270
271 m.addPackage( "${PN}-importlib", "Python import implementation library", "${PN}-core ${PN}-lang", 271 m.addPackage( "${PN}-importlib", "Python import implementation library", "${PN}-core ${PN}-lang",
272 "importlib" ) 272 "importlib imp.*" )
273 273
274 m.addPackage( "${PN}-gdbm", "Python GNU database support", "${PN}-core", 274 m.addPackage( "${PN}-gdbm", "Python GNU database support", "${PN}-core",
275 "lib-dynload/_gdbm.*.so" ) 275 "lib-dynload/_gdbm.*.so" )