diff options
| author | Nick Hainke | 2022-07-05 07:21:04 +0000 |
|---|---|---|
| committer | Daniel Golle | 2022-07-06 21:38:02 +0000 |
| commit | 8288a4bbb368fc050f46c7e97a1c1b7b0e0c66c2 (patch) | |
| tree | c250695430c8e4b18ae851d2745da73ca21fedfc | |
| parent | dcc0fe24ea216d32300c0f01c8879e586d89cc1e (diff) | |
| download | openwrt-8288a4bbb368fc050f46c7e97a1c1b7b0e0c66c2.tar.gz | |
xdp-tools: mark as nonshared
The SDK does not have the LLVM toolchain yet.
Hopefully fixes errors in the form:
xsk_def_xdp_prog.c:4:10: fatal error: 'bpf/bpf_helpers.h' file not found
#include <bpf/bpf_helpers.h>
Fixes: 6ad1bea2a603 ("xdp-tools: add package")
Signed-off-by: Nick Hainke <vincent@systemli.org>
| -rw-r--r-- | package/network/utils/xdp-tools/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/network/utils/xdp-tools/Makefile b/package/network/utils/xdp-tools/Makefile index 3b93a13163..f0af555919 100644 --- a/package/network/utils/xdp-tools/Makefile +++ b/package/network/utils/xdp-tools/Makefile @@ -12,6 +12,7 @@ PKG_ABI_VERSION:=$(call abi_version_str,$(PKG_VERSION)) PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org> PKG_BUILD_DEPENDS:=bpf-headers +PKG_FLAGS:=nonshared include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/bpf.mk |