From 05d95ef6faf92de12333955ccbe1b36d94278053 Mon Sep 17 00:00:00 2001 From: Andrii Nakryiko Date: Wed, 15 Sep 2021 13:30:16 -0700 Subject: [PATCH] makefile: add libbpf_version.h to the list of installed headers libbpf_version.h is a new header that is installed along other public libbpf API headers. Signed-off-by: Andrii Nakryiko --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 913082d..61b8190 100644 --- a/src/Makefile +++ b/src/Makefile @@ -51,7 +51,7 @@ endif HEADERS := bpf.h libbpf.h btf.h libbpf_common.h libbpf_legacy.h xsk.h \ bpf_helpers.h bpf_helper_defs.h bpf_tracing.h \ - bpf_endian.h bpf_core_read.h skel_internal.h + bpf_endian.h bpf_core_read.h skel_internal.h libbpf_version.h UAPI_HEADERS := $(addprefix $(TOPDIR)/include/uapi/linux/,\ bpf.h bpf_common.h btf.h)