aboutsummaryrefslogtreecommitdiffstats
path: root/packages/iotop
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@openmoko.org>2008-07-23 07:19:00 +0200
committerHolger Freyther <ich@tamarin.(none)>2008-10-15 18:53:39 +0200
commit83a3c665dbaa7107aa9f5387078ab239af86282b (patch)
tree36bd04f3b9fa42dc225d3cdbad01f427b1b36d7a /packages/iotop
parentb652b082b012bd5c849502e5a0f3a8e50ffb8939 (diff)
downloadopenembedded-83a3c665dbaa7107aa9f5387078ab239af86282b.tar.gz
[iotop] Actually remove the site.py and site.pyo from the package
Use do_install_append instead of _prepend... to remove the files that are provided by setuptools as well.
Diffstat (limited to 'packages/iotop')
-rw-r--r--packages/iotop/iotop_0.2.1.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/iotop/iotop_0.2.1.bb b/packages/iotop/iotop_0.2.1.bb
index 9d4d93c443..5f85f59fe3 100644
--- a/packages/iotop/iotop_0.2.1.bb
+++ b/packages/iotop/iotop_0.2.1.bb
@@ -1,6 +1,6 @@
HOMEPAGE = "http://guichaz.free.fr/iotop/"
LICENSE = "GPL"
-PR = "r1"
+PR = "r2"
RDEPENDS = "python-distutils python-curses python-setuptools python-textutils"
@@ -8,7 +8,7 @@ SRC_URI = "http://guichaz.free.fr/iotop/files/${PN}-${PV}.tar.bz2"
inherit distutils
-do_install_prepend() {
+do_install_append() {
rm -f ${D}${libdir}/${PYTHON_DIR}/site-packages/site.pyo
rm -f ${D}${libdir}/${PYTHON_DIR}/site-packages/site.py
}