1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-25 00:57:32 +02:00

perf: fix build with kernel 4.9

The musl workaround isn't required anymore and causes build errors with
kernel 4.9 when applied.

Signed-off-by: Mathias Kresin <dev@kresin.me>
This commit is contained in:
Mathias Kresin 2017-03-17 08:29:42 +01:00
parent 6a82f4006c
commit 66146a223e

View File

@ -61,9 +61,11 @@ MAKE_FLAGS = \
WERROR=0 \
prefix=/usr
ifdef CONFIG_LINUX_4_4
ifdef CONFIG_USE_MUSL
MAKE_FLAGS += EXTRA_CFLAGS="-I$(CURDIR)/musl-include -include $(CURDIR)/musl-compat.h -D__UCLIBC__"
endif
endif
define Build/Compile
+$(MAKE_FLAGS) $(MAKE) $(PKG_JOBS) \