diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-17 12:08:48 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-17 12:08:48 +0000 |
commit | 551e0bb8429a1a1574f669438883934554945f88 (patch) | |
tree | 64fbb161537f126e966cdb59b1d99924593be7df /meta/packages/cdrtools | |
parent | a04941ccd3342089272095f4c2289f6b6dd8b414 (diff) | |
download | poky-551e0bb8429a1a1574f669438883934554945f88.tar.gz |
cdrtools-native: Use install for staging
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages/cdrtools')
-rw-r--r-- | meta/packages/cdrtools/cdrtools-native_2.01.bb | 9 |
1 files changed, 5 insertions, 4 deletions
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 \ | |||
13 | 13 | ||
14 | inherit native | 14 | inherit native |
15 | 15 | ||
16 | STAGE_TEMP="${WORKDIR}/stage_temp" | 16 | STAGE_TEMP="${WORKDIR}/image-temp" |
17 | 17 | ||
18 | do_stage() { | 18 | NATIVE_INSTALL_WORKS = "1" |
19 | do_install() { | ||
19 | install -d ${STAGE_TEMP} | 20 | install -d ${STAGE_TEMP} |
20 | make install INS_BASE=${STAGE_TEMP} | 21 | make install INS_BASE=${STAGE_TEMP} |
21 | 22 | ||
22 | install -d ${STAGING_BINDIR} | 23 | install -d ${D}${bindir}/ |
23 | install ${STAGE_TEMP}/bin/* ${STAGING_BINDIR} | 24 | install ${STAGE_TEMP}/bin/* ${D}${bindir}/ |
24 | } | 25 | } |