From 8008be565781869ccd1440f69545ea965162c245 Mon Sep 17 00:00:00 2001 From: Andrey Ignatov Date: Fri, 15 Feb 2019 14:43:41 -0800 Subject: [PATCH] Install bpf_common.h in install_uapi_headers (#12) bpf_common.h is hardly ever changed so it was not installed together with other uapi headers. Some environments are still prefer to be consistent and install all relevant uapi headers so add bpf_common.h to uapi headers. Signed-off-by: Andrey Ignatov --- src/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index e7b7693..cdd7c24 100644 --- a/src/Makefile +++ b/src/Makefile @@ -28,7 +28,8 @@ ifdef BUILD_SHARED endif HEADERS := bpf.h libbpf.h btf.h -UAPI_HEADERS := $(addprefix $(TOPDIR)/include/uapi/linux/,bpf.h btf.h) +UAPI_HEADERS := $(addprefix $(TOPDIR)/include/uapi/linux/,bpf.h bpf_common.h \ + btf.h) INSTALL = install