e2a7822415
The check-package script when ran gave warnings on only using one space before backslashes on all of these makefiles. This patch cleans up all warnings related to the one space before backslashes rule in the make files in the package directory. Signed-off-by: Adam Duskett <aduskett@codeblue.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
40 lines
1.3 KiB
Makefile
40 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# tz
|
|
#
|
|
################################################################################
|
|
|
|
TZ_DEPENDENCIES = host-tzdata host-tzdump
|
|
TZ_LICENSE = Public domain
|
|
|
|
TZ_LOCALTIME = $(call qstrip,$(BR2_TARGET_LOCALTIME))
|
|
|
|
define TZ_BUILD_CMDS
|
|
(cd $(HOST_DIR)/usr/share/zoneinfo/posix/; \
|
|
for i in $$(find . -type f); do \
|
|
mkdir -p $(@D)/output/$$(dirname $$i); \
|
|
$(TZDUMP) -p . -q $${i#./} | sed '1d' > $(@D)/output/$$i; \
|
|
done \
|
|
)
|
|
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 \
|
|
if [ ! -f $(TARGET_DIR)/usr/share/zoneinfo/uclibc/$(TZDATA_LOCALTIME) ]; then \
|
|
printf "Error: '%s' is not a valid timezone, check your BR2_TARGET_LOCALTIME setting\n" \
|
|
"$(TZDATA_LOCALTIME)"; \
|
|
exit 1; \
|
|
fi; \
|
|
cd $(TARGET_DIR)/etc; \
|
|
ln -sf ../usr/share/zoneinfo/uclibc/$(TZDATA_LOCALTIME) TZ; \
|
|
fi
|
|
endef
|
|
|
|
$(eval $(generic-package))
|