aboutsummaryrefslogtreecommitdiffstats
path: root/packages/tzcode
diff options
context:
space:
mode:
authorRod Whitby <rod@whitby.id.au>2007-03-15 10:30:13 +0000
committerRod Whitby <rod@whitby.id.au>2007-03-15 10:30:13 +0000
commit708f0e7e1f3f572030d64a3f3f05e722fd020d8b (patch)
tree4be05ed5742d015e6de43d64f45fbffe31b8223a /packages/tzcode
parente1027a8a6260805797310c6bc0e32b3d0d8e0eca (diff)
downloadopenembedded-708f0e7e1f3f572030d64a3f3f05e722fd020d8b.tar.gz
dfu-util-native, ftdi-eeprom-native, tzcode-native, u-boot, uboot-utils: create the STAGING_BINDIR_NATIVE directory before installing stuff into it.
Diffstat (limited to 'packages/tzcode')
-rw-r--r--packages/tzcode/tzcode-native_2007c.bb9
1 files changed, 5 insertions, 4 deletions
diff --git a/packages/tzcode/tzcode-native_2007c.bb b/packages/tzcode/tzcode-native_2007c.bb
index 126658bd39..aed4253e81 100644
--- a/packages/tzcode/tzcode-native_2007c.bb
+++ b/packages/tzcode/tzcode-native_2007c.bb
@@ -1,6 +1,6 @@
DESCRIPTION = "tzcode, timezone zoneinfo utils -- zic, zdump, tzselect"
-PR = "r1"
+PR = "r2"
SRC_URI = "ftp://elsie.nci.nih.gov/pub/tzcode${PV}.tar.gz \
ftp://elsie.nci.nih.gov/pub/tzdata${PV}.tar.gz"
@@ -10,9 +10,10 @@ S = "${WORKDIR}"
inherit native
do_stage () {
- install -m 755 zic ${STAGING_BINDIR_NATIVE}
- install -m 755 zdump ${STAGING_BINDIR_NATIVE}
- install -m 755 tzselect ${STAGING_BINDIR_NATIVE}
+ install -d ${STAGING_BINDIR_NATIVE}
+ install -m 755 zic ${STAGING_BINDIR_NATIVE}/
+ install -m 755 zdump ${STAGING_BINDIR_NATIVE}/
+ install -m 755 tzselect ${STAGING_BINDIR_NATIVE}/
}
do_install () {