diff options
author | Matthias Hentges <oe@hentges.net> | 2004-09-27 01:36:04 +0000 |
---|---|---|
committer | Matthias Hentges <oe@hentges.net> | 2004-09-27 01:36:04 +0000 |
commit | 995bda5fe02472dc25be42a43ee04222643f4ea3 (patch) | |
tree | 278053e2f1424931b766aa37ba656501635991bb /timezones | |
parent | 78d9a2410ce5ee1622d3fb37c71af3cfae56b963 (diff) |
Remove CVS directories from timezones package
BKrev: 41576e84kQcH7bfrXmD_G0cEfi_X2Q
Diffstat (limited to 'timezones')
-rw-r--r-- | timezones/timezones_cvs.oe | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/timezones/timezones_cvs.oe b/timezones/timezones_cvs.oe index fd09790321..a64facf4b0 100644 --- a/timezones/timezones_cvs.oe +++ b/timezones/timezones_cvs.oe @@ -5,12 +5,22 @@ MAINTAINER = "Team Opie <opie@handhelds.org> LICENSE = "GPL" PV = "1.1.6-cvs-${CVSDATE}" +PR = "r1" + SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/root" S = "${WORKDIR}/root" do_install() { - mkdir -p ${D}/usr/share - cp -pfLR usr/share/zoneinfo ${D}/usr/share + for dir in `ls -1 usr/share/zoneinfo` + do + install -d ${D}/usr/share/zoneinfo/$dir + + for file in `find usr/share/zoneinfo/$dir/ -type f|grep -v CVS` + do + install -m 644 "$file" ${D}/usr/share/zoneinfo/$dir + done + + done } FILES_${PN} = usr/share/zoneinfo/[A-Z]* |