HOST_TZDATA_DEPENDENCIES = host-zic
TZDATA_LICENSE = Public domain
+# Take care when re-ordering this list since this might break zone
+# dependencies
TZDATA_DEFAULT_ZONELIST = \
- africa antarctica asia australasia backward etcetera \
- europe factory northamerica pacificnew southamerica
+ africa antarctica asia australasia europe northamerica \
+ southamerica pacificnew etcetera backward systemv factory
ifeq ($(call qstrip,$(BR2_TARGET_TZ_ZONELIST)),default)
TZDATA_ZONELIST = $(TZDATA_DEFAULT_ZONELIST)
define HOST_TZDATA_BUILD_CMDS
(cd $(@D); \
for zone in $(TZDATA_ZONELIST); do \
- $(ZIC) -d _output/posix -y yearistype.sh $$zone; \
- $(ZIC) -d _output/right -L leapseconds -y yearistype.sh $$zone; \
+ $(ZIC) -d _output/posix -y yearistype.sh $$zone || exit 1; \
+ $(ZIC) -d _output/right -L leapseconds -y yearistype.sh $$zone || exit 1; \
done; \
)
endef