mirror of
https://git.busybox.net/buildroot.git
synced 2025-01-23 04:43:30 +08:00
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
616 B
Makefile
19 lines
616 B
Makefile
#############################################################
|
|
#
|
|
# bridge-utils
|
|
#
|
|
#############################################################
|
|
|
|
BRIDGE_UTILS_VERSION = 1.5
|
|
BRIDGE_UTILS_SOURCE = bridge-utils-$(BRIDGE_UTILS_VERSION).tar.gz
|
|
BRIDGE_UTILS_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/bridge
|
|
BRIDGE_UTILS_AUTORECONF = YES
|
|
BRIDGE_UTILS_CONF_OPT = --with-linux-headers=$(LINUX_HEADERS_DIR)
|
|
|
|
define BRIDGE_UTILS_UNINSTALL_TARGET_CMDS
|
|
rm -f $(addprefix $(TARGET_DIR)/usr/,lib/libbridge.a \
|
|
include/libbridge.h share/man/man8/brctl.8 sbin/brctl)
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|