From: Andrii Nakryiko Date: Thu, 3 Jun 2021 00:40:25 +0000 (-0700) Subject: libbpf: Install skel_internal.h header used from light skeletons X-Git-Tag: accepted/tizen/unified/20230118.172025~6942^2~135^2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d8a819dd31672f02ece93b6a9b9491daba4f0f2;p=platform%2Fkernel%2Flinux-rpi.git libbpf: Install skel_internal.h header used from light skeletons Light skeleton code assumes skel_internal.h header to be installed system-wide by libbpf package. Make sure it is actually installed. Fixes: 67234743736a ("libbpf: Generate loader program out of BPF ELF file.") Signed-off-by: Andrii Nakryiko Signed-off-by: Daniel Borkmann Link: https://lore.kernel.org/bpf/20210603004026.2698513-4-andrii@kernel.org --- diff --git a/tools/lib/bpf/Makefile b/tools/lib/bpf/Makefile index d1b909e..ec14aa7 100644 --- a/tools/lib/bpf/Makefile +++ b/tools/lib/bpf/Makefile @@ -225,7 +225,7 @@ install_lib: all_cmd INSTALL_HEADERS = bpf.h libbpf.h btf.h libbpf_common.h libbpf_legacy.h xsk.h \ bpf_helpers.h $(BPF_HELPER_DEFS) bpf_tracing.h \ - bpf_endian.h bpf_core_read.h + bpf_endian.h bpf_core_read.h skel_internal.h install_headers: $(BPF_HELPER_DEFS) $(call QUIET_INSTALL, headers) \