From: Björn Töpel Date: Wed, 27 Mar 2019 13:51:13 +0000 (+0100) Subject: libbpf: add xsk.h to install_headers target X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=379e2014c95b7a454713da822b8ef4ec51ab8a75;p=openwrt%2Fstaging%2Fblogic.git libbpf: add xsk.h to install_headers target The xsk.h header file was missing from the install_headers target in the Makefile. This patch simply adds xsk.h to the set of installed headers. Fixes: 1cad07884239 ("libbpf: add support for using AF_XDP sockets") Reported-by: Bruce Richardson Signed-off-by: Björn Töpel Signed-off-by: Daniel Borkmann --- diff --git a/tools/lib/bpf/Makefile b/tools/lib/bpf/Makefile index 5bf8e52c41fc..279589c29983 100644 --- a/tools/lib/bpf/Makefile +++ b/tools/lib/bpf/Makefile @@ -222,6 +222,7 @@ install_headers: $(call do_install,bpf.h,$(prefix)/include/bpf,644); \ $(call do_install,libbpf.h,$(prefix)/include/bpf,644); $(call do_install,btf.h,$(prefix)/include/bpf,644); + $(call do_install,xsk.h,$(prefix)/include/bpf,644); install: install_lib