diff options
author | Bogdan Marinescu <bogdan.a.marinescu@intel.com> | 2013-01-08 18:33:48 +0200 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-01-09 16:40:35 -0800 |
commit | f5f9cfcccd1526572673ffbc5435bf3221498409 (patch) | |
tree | 747446dfa94614df2a8c08e4ae720645d4561707 /meta/recipes-devtools/python | |
parent | 3f5706348c8c586359ac7fbccadc4bbd55cd8bc9 (diff) | |
download | openembedded-core-f5f9cfcccd1526572673ffbc5435bf3221498409.tar.gz openembedded-core-f5f9cfcccd1526572673ffbc5435bf3221498409.tar.bz2 openembedded-core-f5f9cfcccd1526572673ffbc5435bf3221498409.zip |
python-smartpm: add dependency on python-pprint
smart's "config" command uses the Python pprint module. If it is not
present, "config" fails with this error:
#############
# smart config --help
error: Invalid command 'config'
#############
This patch adds a dependency on python-pprint which fixes the error.
Tested on qemux86/core-image-sato-sdk.
[YOCTO #3643]
Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r-- | meta/recipes-devtools/python/python-smartpm_1.4.1.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/python/python-smartpm_1.4.1.bb b/meta/recipes-devtools/python/python-smartpm_1.4.1.bb index f3dd39910c..4d0f96b769 100644 --- a/meta/recipes-devtools/python/python-smartpm_1.4.1.bb +++ b/meta/recipes-devtools/python/python-smartpm_1.4.1.bb @@ -11,7 +11,7 @@ LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://LICENSE;md5=393a5ca445f6965873eca0259a17f833" DEPENDS = "python rpm" -PR = "r6" +PR = "r7" SRCNAME = "smart" SRC_URI = "\ @@ -113,7 +113,7 @@ RDEPENDS_smartpm = "${PN}" RDEPENDS_${PN} += "${PN}-backend-rpm python-codecs python-textutils python-xml python-fcntl \ python-pickle python-crypt python-compression python-shell \ - python-resource python-netclient python-threading python-unixadmin" + python-resource python-netclient python-threading python-unixadmin python-pprint" RDEPENDS_${PN}_class-native = "" RDEPENDS_${PN}-backend-rpm = "python-rpm" |