From: Til Kaiser Date: Sun, 27 Oct 2024 13:02:14 +0000 (+0100) Subject: xdp-tools: fix compilation when bpftool is installed X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=ff18576f845e9b422748efcafe1332e206626604;p=openwrt%2Fopenwrt.git xdp-tools: fix compilation when bpftool is installed Currently, xdp-tools doesn't compile on build systems where bpftool is installed because additional tools and BPF programs will be compiled then, which results in build errors. This commit disables the compilation of those bpftool-dependent tools. Signed-off-by: Til Kaiser Link: https://github.com/openwrt/openwrt/pull/16787 Signed-off-by: Robert Marko --- diff --git a/package/network/utils/xdp-tools/Makefile b/package/network/utils/xdp-tools/Makefile index 8c4071991f..8bce10f634 100644 --- a/package/network/utils/xdp-tools/Makefile +++ b/package/network/utils/xdp-tools/Makefile @@ -87,7 +87,8 @@ CONFIGURE_VARS += \ CLANG="$(CLANG)" \ BPF_TARGET="$(BPF_ARCH)-linux-gnu" \ LLC="$(LLVM_LLC)" \ - BPF_LDFLAGS="-march=$(BPF_TARGET) -mcpu=v3" + BPF_LDFLAGS="-march=$(BPF_TARGET) -mcpu=v3" \ + BPFTOOL="" ifneq ($(findstring s,$(OPENWRT_VERBOSE)),) MAKE_FLAGS+=V=1