summaryrefslogtreecommitdiffstats
path: root/scripts/contrib
diff options
context:
space:
mode:
authorAlejandro Hernandez <alejandro.hernandez@linux.intel.com>2015-09-18 21:06:50 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-23 09:53:05 +0100
commita7dd7586353bc1a74174801904443cd98765f3c6 (patch)
tree66f5ba99c0c5f290efbdcdee621c965e1a7b50d0 /scripts/contrib
parent0e5a9114f58828058595d773e5b97771c88f7be8 (diff)
downloadpoky-a7dd7586353bc1a74174801904443cd98765f3c6.tar.gz
python3-debugger: fix importlib dependency
python3-debugger (pdb) needs importlib as a dependency, if not included it produces an error when importing pdb, making pdb unusable, this patch adds importlib dependency fixing the issue. {YOCT0 #8333] (From OE-Core rev: babab409393aacdc558851cc62ce60659da25068) Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/contrib')
-rwxr-xr-xscripts/contrib/python/generate-manifest-3.4.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/contrib/python/generate-manifest-3.4.py b/scripts/contrib/python/generate-manifest-3.4.py
index 06eecdc5d0..9e9debd905 100755
--- a/scripts/contrib/python/generate-manifest-3.4.py
+++ b/scripts/contrib/python/generate-manifest-3.4.py
@@ -238,7 +238,7 @@ if __name__ == "__main__":
238 m.addPackage( "${PN}-db", "Python file-based database support", "${PN}-core", 238 m.addPackage( "${PN}-db", "Python file-based database support", "${PN}-core",
239 "anydbm.* dumbdbm.* whichdb.* dbm lib-dynload/_dbm.*.so" ) 239 "anydbm.* dumbdbm.* whichdb.* dbm lib-dynload/_dbm.*.so" )
240 240
241 m.addPackage( "${PN}-debugger", "Python debugger", "${PN}-core ${PN}-io ${PN}-lang ${PN}-re ${PN}-stringold ${PN}-shell ${PN}-pprint", 241 m.addPackage( "${PN}-debugger", "Python debugger", "${PN}-core ${PN}-io ${PN}-lang ${PN}-re ${PN}-stringold ${PN}-shell ${PN}-pprint ${PN}-importlib",
242 "bdb.* pdb.*" ) 242 "bdb.* pdb.*" )
243 243
244 m.addPackage( "${PN}-difflib", "Python helpers for computing deltas between objects", "${PN}-lang ${PN}-re", 244 m.addPackage( "${PN}-difflib", "Python helpers for computing deltas between objects", "${PN}-lang ${PN}-re",