From 61dda69cd4aeac63ff6d361578a76710aade2813 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 16 Mar 2018 11:56:43 +0100 Subject: [PATCH] tzdata: Make installation POSIX conformant From the Linux From Scratch book [1]: > This creates the posixrules file. We use New York because POSIX > requires the daylight savings time rules to be in accordance with US > rules. [1]: http://www.linuxfromscratch.org/lfs/downloads/8.2/LFS-BOOK-8.2-NOCHUNKS.html --- tzdata.be0 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tzdata.be0 b/tzdata.be0 index 4f5bb4a27..d9d19ee8a 100755 --- a/tzdata.be0 +++ b/tzdata.be0 @@ -46,6 +46,8 @@ mee_install() { cp -vax zoneinfo ${D}/${DATADIR} cp -v zone.tab zone1970.tab iso3166.tab ${D}/${DATADIR}/zoneinfo + zic -d ${D}/${DATADIR}/zoneinfo -p America/New_York + mkdir -pv ${D}${SYSCONFDIR} cp ${D}${DATADIR}/zoneinfo/${MYTIMEZONE} ${D}${SYSCONFDIR}/localtime }