From: Nikolay Borisov Date: Tue, 26 May 2020 17:46:12 +0000 (+0300) Subject: libbpf: Install headers as part of make install X-Git-Tag: Ubuntu-5.13.0-19.19~5898^2~6^2~26 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=93581359e7aeb11358018f2e3a737776d1e899ae;p=mirror_ubuntu-jammy-kernel.git libbpf: Install headers as part of make install Current 'make install' results in only pkg-config and library binaries being installed. For consistency also install headers as part of "make install" Signed-off-by: Nikolay Borisov Signed-off-by: Daniel Borkmann Acked-by: Andrii Nakryiko Link: https://lore.kernel.org/bpf/20200526174612.5447-1-nborisov@suse.com Signed-off-by: Alexei Starovoitov --- diff --git a/tools/lib/bpf/Makefile b/tools/lib/bpf/Makefile index aee7f1a83c77..d02c4d910aad 100644 --- a/tools/lib/bpf/Makefile +++ b/tools/lib/bpf/Makefile @@ -264,7 +264,7 @@ install_pkgconfig: $(PC_FILE) $(call QUIET_INSTALL, $(PC_FILE)) \ $(call do_install,$(PC_FILE),$(libdir_SQ)/pkgconfig,644) -install: install_lib install_pkgconfig +install: install_lib install_pkgconfig install_headers ### Cleaning rules