mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
808c3ebfe7
This brings the following changes: $ git slog 65a10105564801094b18c3fcacf4dde4c44e4ab8..e1a52ce12a701b8ea4163d6719713e38c0e53d35 e1a52ce12a701b8ea4163d6719713e38c0e53d35 Merge pull request #2 from mcpat/master 21764c4bc373dc7f770f9d87d77c5efca50d2733 Wrap timezone abbreviations with angle brackets if required Signed-off-by: Marcel Patzlaff <m.patzlaff@pilz.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
22 lines
617 B
Makefile
22 lines
617 B
Makefile
################################################################################
|
|
#
|
|
# tzdump
|
|
#
|
|
################################################################################
|
|
|
|
TZDUMP_VERSION = e1a52ce12a701b8ea4163d6719713e38c0e53d35
|
|
TZDUMP_SITE = $(call github,alexandrebelloni,tzdump,$(TZDUMP_VERSION))
|
|
HOST_TZDUMP_DEPENDENCIES = host-zic
|
|
|
|
define HOST_TZDUMP_BUILD_CMDS
|
|
cd $(@D) && $(HOSTCC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o tzdump tzdump.c
|
|
endef
|
|
|
|
define HOST_TZDUMP_INSTALL_CMDS
|
|
$(INSTALL) -m 0755 -D $(@D)/tzdump $(HOST_DIR)/sbin/tzdump
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|
|
|
|
TZDUMP = $(HOST_DIR)/sbin/tzdump
|