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>
24 lines
801 B
Makefile
24 lines
801 B
Makefile
#############################################################
|
|
#
|
|
# tcpdump
|
|
#
|
|
#############################################################
|
|
# Copyright (C) 2001-2003 by Erik Andersen <andersen@codepoet.org>
|
|
# Copyright (C) 2002 by Tim Riker <Tim@Rikers.org>
|
|
|
|
TCPDUMP_VERSION = 4.3.0
|
|
TCPDUMP_SITE = http://www.tcpdump.org/release
|
|
TCPDUMP_CONF_ENV = ac_cv_linux_vers=2 td_cv_buggygetaddrinfo=no
|
|
TCPDUMP_CONF_OPT = --without-crypto \
|
|
$(if $(BR2_PACKAGE_TCPDUMP_SMB),--enable-smb,--disable-smb)
|
|
TCPDUMP_DEPENDENCIES = zlib libpcap
|
|
|
|
# make install installs an unneeded extra copy of the tcpdump binary
|
|
define TCPDUMP_REMOVE_DUPLICATED_BINARY
|
|
rm -f $(TARGET_DIR)/usr/sbin/tcpdump.$(TCPDUMP_VERSION)
|
|
endef
|
|
|
|
TCPDUMP_POST_INSTALL_TARGET_HOOKS += TCPDUMP_REMOVE_DUPLICATED_BINARY
|
|
|
|
$(eval $(autotools-package))
|