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>
19 lines
488 B
Makefile
19 lines
488 B
Makefile
#############################################################
|
|
#
|
|
# radvd
|
|
#
|
|
#############################################################
|
|
|
|
RADVD_VERSION = 1.9.1
|
|
RADVD_SITE = http://www.litech.org/radvd/dist
|
|
RADVD_DEPENDENCIES = flex libdaemon host-flex host-pkg-config
|
|
RADVD_AUTORECONF = YES
|
|
|
|
define RADVD_INSTALL_INITSCRIPT
|
|
$(INSTALL) -m 0755 package/radvd/S50radvd $(TARGET_DIR)/etc/init.d
|
|
endef
|
|
|
|
RADVD_POST_INSTALL_TARGET_HOOKS += RADVD_INSTALL_INITSCRIPT
|
|
|
|
$(eval $(autotools-package))
|