From: Richard Purdie Date: Tue, 17 Nov 2009 12:08:48 +0000 (+0000) Subject: cdrtools-native: Use install for staging X-Git-Tag: 2011-1~6749 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=551e0bb8429a1a1574f669438883934554945f88;p=openembedded-core.git cdrtools-native: Use install for staging Signed-off-by: Richard Purdie --- diff --git a/meta/packages/cdrtools/cdrtools-native_2.01.bb b/meta/packages/cdrtools/cdrtools-native_2.01.bb index 6f87b50768..b4b496f6e7 100644 --- a/meta/packages/cdrtools/cdrtools-native_2.01.bb +++ b/meta/packages/cdrtools/cdrtools-native_2.01.bb @@ -13,12 +13,13 @@ SRC_URI="ftp://ftp.berlios.de/pub/cdrecord/cdrtools-${PV}.tar.bz2 \ inherit native -STAGE_TEMP="${WORKDIR}/stage_temp" +STAGE_TEMP="${WORKDIR}/image-temp" -do_stage() { +NATIVE_INSTALL_WORKS = "1" +do_install() { install -d ${STAGE_TEMP} make install INS_BASE=${STAGE_TEMP} - install -d ${STAGING_BINDIR} - install ${STAGE_TEMP}/bin/* ${STAGING_BINDIR} + install -d ${D}${bindir}/ + install ${STAGE_TEMP}/bin/* ${D}${bindir}/ }