diff options
author | Alejandro Hernandez <alejandro.hernandez@linux.intel.com> | 2015-09-18 21:27:54 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-21 23:05:42 +0100 |
commit | f4d7f7075b3da1a3a37d6bb3e19613e7a068a63c (patch) | |
tree | fd75114da975b3f7bb94eb43298ab277b5544422 /meta | |
parent | babab409393aacdc558851cc62ce60659da25068 (diff) | |
download | openembedded-core-f4d7f7075b3da1a3a37d6bb3e19613e7a068a63c.tar.gz openembedded-core-f4d7f7075b3da1a3a37d6bb3e19613e7a068a63c.tar.bz2 openembedded-core-f4d7f7075b3da1a3a37d6bb3e19613e7a068a63c.zip |
python3-debugger: Adds pkgutils dependency to pdb
python3-debugger fails to be invoked to debug other scripts complaining about
not being able to import pkutil, this patch adds pkgutil as a dependency for python3-debugger
fixing the issue.
[YOCTO #8334]
Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/python/python-3.4-manifest.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python-3.4-manifest.inc b/meta/recipes-devtools/python/python-3.4-manifest.inc index f828623d80..97070b6fad 100644 --- a/meta/recipes-devtools/python/python-3.4-manifest.inc +++ b/meta/recipes-devtools/python/python-3.4-manifest.inc @@ -58,7 +58,7 @@ RDEPENDS_${PN}-db="${PN}-core" FILES_${PN}-db="${libdir}/python3.4/anydbm.* ${libdir}/python3.4/dumbdbm.* ${libdir}/python3.4/whichdb.* ${libdir}/python3.4/dbm ${libdir}/python3.4/lib-dynload/_dbm.*.so " SUMMARY_${PN}-debugger="Python debugger" -RDEPENDS_${PN}-debugger="${PN}-core ${PN}-io ${PN}-lang ${PN}-re ${PN}-stringold ${PN}-shell ${PN}-pprint ${PN}-importlib" +RDEPENDS_${PN}-debugger="${PN}-core ${PN}-io ${PN}-lang ${PN}-re ${PN}-stringold ${PN}-shell ${PN}-pprint ${PN}-importlib ${PN}-pkgutil" FILES_${PN}-debugger="${libdir}/python3.4/bdb.* ${libdir}/python3.4/pdb.* " SUMMARY_${PN}-dev="Python development package" |