mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 05:53:30 +08:00
7b0e757fb8
The recommended form is without the trailing slash, and will become mandatory in a coming commit. This avoids the need for the $$($(2)_SITE:/=) magic in package/pkg-generic.mk to avoid double slashes in download URLs, like "https://mosh.mit.edu//mosh-1.2.5.tar.gz". ^^ Note: this work has already been done inb0b9606530
a few months ago and earlier inc7f4b96471
and4a9eb20de8
, but no check has been added at that time to avoid new slashes to slip in, and so they did. This time a patch will follow immediately to prevent future mistakes from being unnoticed. Mass-replaced with the following command: git grep -l '_SITE.*/$' | xargs sed -i '/_SITE.*=/s|/$||' Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
40 lines
1.2 KiB
Makefile
40 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# ebtables
|
|
#
|
|
################################################################################
|
|
|
|
EBTABLES_VERSION = 2.0.10-4
|
|
EBTABLES_SOURCE = ebtables-v$(EBTABLES_VERSION).tar.gz
|
|
EBTABLES_SITE = http://ftp.netfilter.org/pub/ebtables
|
|
EBTABLES_LICENSE = GPLv2+
|
|
EBTABLES_LICENSE_FILES = COPYING
|
|
EBTABLES_STATIC = $(if $(BR2_STATIC_LIBS),static)
|
|
EBTABLES_K64U32 = $(if $(BR2_KERNEL_64_USERLAND_32),-DKERNEL_64_USERSPACE_32)
|
|
|
|
define EBTABLES_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) LIBDIR=/lib/ebtables $(EBTABLES_STATIC) \
|
|
CFLAGS="$(TARGET_CFLAGS) $(EBTABLES_K64U32)" -C $(@D)
|
|
endef
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
define EBTABLES_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 -D $(@D)/$(EBTABLES_SUBDIR)/static \
|
|
$(TARGET_DIR)/sbin/ebtables
|
|
endef
|
|
else
|
|
define EBTABLES_INSTALL_TARGET_CMDS
|
|
for so in $(@D)/$(EBTABLES_SUBDIR)/*.so \
|
|
$(@D)/$(EBTABLES_SUBDIR)/extensions/*.so; \
|
|
do \
|
|
$(INSTALL) -m 0755 -D $${so} \
|
|
$(TARGET_DIR)/lib/ebtables/`basename $${so}` || exit 1; \
|
|
done
|
|
$(INSTALL) -m 0755 -D $(@D)/$(EBTABLES_SUBDIR)/ebtables \
|
|
$(TARGET_DIR)/sbin/ebtables
|
|
$(INSTALL) -m 0644 -D $(@D)/ethertypes $(TARGET_DIR)/etc/ethertypes
|
|
endef
|
|
endif
|
|
|
|
$(eval $(generic-package))
|