aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnders Darander <anders@chargestorm.se>2017-02-13 16:06:56 -0600
committerArmin Kuster <akuster808@gmail.com>2017-04-01 09:10:31 -0400
commitd40ea16f5d32c6a130e4d4bfdeaf65c13a36e15c (patch)
treeeb301bc0956e8dd115a6c88f8bf35750fbf62ab7
parent4827a584618c38a8d5fa8f9bfa4ea44f94466840 (diff)
downloadopenembedded-core-contrib-d40ea16f5d32c6a130e4d4bfdeaf65c13a36e15c.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. 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>
-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__":
"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" )