diff options
author | Koen Kooi <koen@openembedded.org> | 2007-03-04 13:49:17 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-03-04 13:49:17 +0000 |
commit | 62b6b808de09df06357be12e5692edc95c785200 (patch) | |
tree | cb3ed20b37a29944927df5e0a49445abe7c575f2 /packages/tzcode | |
parent | 151a8207b45bb70ebcdd8978af6f66ce566d591a (diff) |
tzcode, tzdata: update to something that actually is fetchable, remove hardcoded paths, install binaries in correct staging dir and make sure we use the correct 'zic'
Diffstat (limited to 'packages/tzcode')
-rw-r--r-- | packages/tzcode/tzcode-native_2007c.bb (renamed from packages/tzcode/tzcode-native_2007a.bb) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/tzcode/tzcode-native_2007a.bb b/packages/tzcode/tzcode-native_2007c.bb index 1c6e2f59b8..126658bd39 100644 --- a/packages/tzcode/tzcode-native_2007a.bb +++ b/packages/tzcode/tzcode-native_2007c.bb @@ -1,6 +1,6 @@ DESCRIPTION = "tzcode, timezone zoneinfo utils -- zic, zdump, tzselect" -PR = "r0" +PR = "r1" 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,9 @@ S = "${WORKDIR}" inherit native do_stage () { - install -m 755 zic ${STAGING_BINDIR} - install -m 755 zdump ${STAGING_BINDIR} - install -m 755 tzselect ${STAGING_BINDIR} + install -m 755 zic ${STAGING_BINDIR_NATIVE} + install -m 755 zdump ${STAGING_BINDIR_NATIVE} + install -m 755 tzselect ${STAGING_BINDIR_NATIVE} } do_install () { |