diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-17 12:37:23 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-17 12:37:23 +0000 |
commit | 9de4ef4516cb33341d71dfcc7100698e9f340eec (patch) | |
tree | 2cce8d02cd815923e43b2aa48d81ca6548a15c78 | |
parent | 49abf93f5a0b8c4055cac3f6e76937971b1ac4dd (diff) | |
download | poky-9de4ef4516cb33341d71dfcc7100698e9f340eec.tar.gz |
tzcode-native: Convert to use do_install for staging
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r-- | meta/packages/tzcode/tzcode-native_2007h.bb | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/meta/packages/tzcode/tzcode-native_2007h.bb b/meta/packages/tzcode/tzcode-native_2007h.bb index 8e721d6d9a..b672f5cd53 100644 --- a/meta/packages/tzcode/tzcode-native_2007h.bb +++ b/meta/packages/tzcode/tzcode-native_2007h.bb | |||
@@ -9,13 +9,9 @@ S = "${WORKDIR}" | |||
9 | 9 | ||
10 | inherit native | 10 | inherit native |
11 | 11 | ||
12 | do_stage () { | ||
13 | install -d ${STAGING_BINDIR_NATIVE} | ||
14 | install -m 755 zic ${STAGING_BINDIR_NATIVE}/ | ||
15 | install -m 755 zdump ${STAGING_BINDIR_NATIVE}/ | ||
16 | install -m 755 tzselect ${STAGING_BINDIR_NATIVE}/ | ||
17 | } | ||
18 | |||
19 | do_install () { | 12 | do_install () { |
20 | : | 13 | install -d ${D}${bindir}/ |
14 | install -m 755 zic ${D}${bindir}/ | ||
15 | install -m 755 zdump ${D}${bindir}/ | ||
16 | install -m 755 tzselect ${D}${bindir}/ | ||
21 | } | 17 | } |