python: Drop staging functions. If failures occur we just need to improve do_install

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie
2009-11-19 11:50:58 +00:00
parent 5716a14bf4
commit 47c19bb87a
11 changed files with 12 additions and 63 deletions

View File

@@ -7,12 +7,14 @@ PARALLEL_MAKE = ""
inherit native
NATIVE_INSTALL_WORKS = "1"
SRC_URI = "\
ftp://ftp.gnome.org/pub/GNOME/sources/pygobject/${MAJ_VER}/pygobject-${PV}.tar.bz2 \
# file://python-path.patch;patch=1 \
"
do_stage_append() {
install -d ${STAGING_BINDIR}
install -m 0755 gobject/generate-constants ${STAGING_BINDIR}/gobject-generate-constants
do_install_append() {
install -d ${D}${bindir}
install -m 0755 gobject/generate-constants ${D}${bindir}/gobject-generate-constants
}