From: Yann E. MORIN Date: Sun, 4 May 2014 16:01:28 +0000 (+0200) Subject: package/tz: install missing files X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=70c36464d1f149211ccfa43f40aa27ccca3d77ea;p=buildroot.git package/tz: install missing files As for the tzdata package, install the missing files: - zone.tab : {country-code,coordinates,timezone} tuples - iso3166.tab: {country-code,country} tuples Reported-by: Maxime Hadjinlian Signed-off-by: "Yann E. MORIN" Signed-off-by: Peter Korsgaard --- diff --git a/package/tz/tz.mk b/package/tz/tz.mk index a762acd0b0..865ba3bb9c 100644 --- a/package/tz/tz.mk +++ b/package/tz/tz.mk @@ -20,6 +20,10 @@ define TZ_BUILD_CMDS endef define TZ_INSTALL_TARGET_CMDS + $(INSTALL) -D -m 0644 $(HOST_DIR)/usr/share/zoneinfo/zone.tab \ + $(TARGET_DIR)/usr/share/zoneinfo/zone.tab + $(INSTALL) -D -m 0644 $(HOST_DIR)/usr/share/zoneinfo/iso3166.tab \ + $(TARGET_DIR)/usr/share/zoneinfo/iso3166.tab mkdir -p $(TARGET_DIR)/usr/share/zoneinfo/uclibc cp -a $(@D)/output/* $(TARGET_DIR)/usr/share/zoneinfo/uclibc if [ -n "$(TZ_LOCALTIME)" ]; then \