From patchwork Wed Jun 1 06:39:00 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: iotop: add missing runtime dependency Date: Wed, 01 Jun 2011 06:39:00 -0000 From: Steffen Sledz X-Patchwork-Id: 5197 Message-Id: <1306910340-25453-1-git-send-email-sledz@dresearch-fe.de> To: openembedded-devel@lists.openembedded.org Fixes runtime error: "No module named locale To run an uninstalled copy of iotop, launch iotop.py in the top directory" Signed-off-by: Steffen Sledz --- recipes/iotop/iotop_0.2.1.bb | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/iotop/iotop_0.2.1.bb b/recipes/iotop/iotop_0.2.1.bb index 12ccc77..0d3e387 100644 --- a/recipes/iotop/iotop_0.2.1.bb +++ b/recipes/iotop/iotop_0.2.1.bb @@ -1,8 +1,8 @@ HOMEPAGE = "http://guichaz.free.fr/iotop/" LICENSE = "GPL" -PR = "r3" +PR = "r4" -RDEPENDS_${PN} = "python-distutils python-curses python-setuptools python-textutils" +RDEPENDS_${PN} = "python-distutils python-curses python-setuptools python-textutils python-codecs" SRC_URI = "http://guichaz.free.fr/iotop/files/${PN}-${PV}.tar.bz2"