From: Jesper Dangaard Brouer Date: Tue, 16 Jan 2018 23:20:30 +0000 (+0100) Subject: libbpf: install the header file libbpf.h X-Git-Tag: v4.19~1702^2~145^2^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d386c624980e476612490df52eaa86c8e066edc;p=platform%2Fkernel%2Flinux-rpi3.git libbpf: install the header file libbpf.h It seems like an oversight not to install the header file for libbpf, given the libbpf.so + libbpf.a files are installed. Signed-off-by: Jesper Dangaard Brouer Signed-off-by: Daniel Borkmann --- diff --git a/tools/lib/bpf/Makefile b/tools/lib/bpf/Makefile index 8ed43ae..5437065 100644 --- a/tools/lib/bpf/Makefile +++ b/tools/lib/bpf/Makefile @@ -192,7 +192,8 @@ install_lib: all_cmd install_headers: $(call QUIET_INSTALL, headers) \ - $(call do_install,bpf.h,$(prefix)/include/bpf,644) + $(call do_install,bpf.h,$(prefix)/include/bpf,644); \ + $(call do_install,libbpf.h,$(prefix)/include/bpf,644); install: install_lib