summaryrefslogtreecommitdiffstats
path: root/package/ebtables
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2013-10-25 10:10:23 -0300
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2013-10-30 22:59:30 +0100
commite06fac395b2adc5b3062e92fd29b1902dacc200c (patch)
tree97cdd0e6346d4a23a9f570ca980ac988eaf1dfc1 /package/ebtables
parent957a986214169a76c51e9f63a232b67f286889d8 (diff)
ebtables: build fix for 64-bit kernel with 32-bit userland
Fixes bug #6602. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/ebtables')
-rw-r--r--package/ebtables/ebtables.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/ebtables/ebtables.mk b/package/ebtables/ebtables.mk
index edb5d42b7..612cf8302 100644
--- a/package/ebtables/ebtables.mk
+++ b/package/ebtables/ebtables.mk
@@ -10,10 +10,11 @@ EBTABLES_SITE = http://downloads.sourceforge.net/project/ebtables/ebtables/ebtab
EBTABLES_LICENSE = GPLv2+
EBTABLES_LICENSE_FILES = COPYING
EBTABLES_STATIC = $(if $(BR2_PREFER_STATIC_LIB),static)
+EBTABLES_K64U32 = $(if $(BR2_KERNEL_64_USERLAND_32),CFLAGS+="-DKERNEL_64_USERSPACE_32")
define EBTABLES_BUILD_CMDS
$(MAKE) $(TARGET_CONFIGURE_OPTS) LIBDIR=/lib/ebtables $(EBTABLES_STATIC) \
- -C $(@D)
+ $(EBTABLES_K64U32) -C $(@D)
endef
ifeq ($(BR2_PREFER_STATIC_LIB),y)