e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
18 lines
477 B
Makefile
18 lines
477 B
Makefile
#############################################################
|
|
#
|
|
# OpenNTPD
|
|
#
|
|
#############################################################
|
|
|
|
OPENNTPD_VERSION = 3.9p1
|
|
OPENNTPD_SITE = ftp://ftp.openbsd.org/pub/OpenBSD/OpenNTPD
|
|
OPENNTPD_CONF_OPT = --with-builtin-arc4random --disable-strip
|
|
|
|
define OPENNTPD_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/sbin/ntpd
|
|
rm -f $(TARGET_DIR)/etc/ntpd.conf
|
|
rm -f $(TARGET_DIR)/usr/share/man/man?/ntpd*
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|