----- Mail original ----- > De: "Andrew Benton" <a...@benton.eu.com> > À: "LFS Developers Mailinglist" <lfs-dev@linuxfromscratch.org> > Envoyé: Mardi 13 Mars 2012 14:10:54 > Objet: [lfs-dev] glibc timezone/zoneinfo > > Hello > > FYI, it seems that timezone/zoneinfo data are no longer installed by > glibc (from git). It still installs zic, and the files are still in > the > source tree so you can use zic to generate /etc/localtime, however, > more up to date files are available at http://www.iana.org/time-zones > > Andy
To install from tzdata package, you would need this sort of script (should have been borrowed from Ubuntu and tailored for my need) # No top directory inside the package @rm -rf $(DIR_APP) && mkdir $(DIR_APP) && cd $(DIR_APP) && tar zxf $(DIR_DL)/$(DL_FILE) # Build only the "posix"versions (no leap seconds) cd $(DIR_APP) && \ for zone in africa antarctica asia australasia europe northamerica southamerica etcetera factory backward systemv pacificnew solar87 solar88 solar89; do \ /usr/sbin/zic -d /usr/share/zoneinfo/posix -L /dev/null -y yearistype.sh $$zone ; \ done Gilles -- http://linuxfromscratch.org/mailman/listinfo/lfs-dev FAQ: http://www.linuxfromscratch.org/faq/ Unsubscribe: See the above information page