projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
89dedae
)
bpf, libbpf: fix quiet install_headers
author
Daniel Borkmann
<daniel@iogearbox.net>
Thu, 28 Mar 2019 15:44:28 +0000
(16:44 +0100)
committer
Daniel Borkmann
<daniel@iogearbox.net>
Thu, 28 Mar 2019 16:01:37 +0000
(17:01 +0100)
Both btf.h and xsk.h headers are not installed quietly due to
missing '\' for the call to QUIET_INSTALL. Lets fix it.
Before:
# make install_headers
INSTALL headers
if [ ! -d '''/usr/local/include/bpf' ]; then install -d -m 755 '''/usr/local/include/bpf'; fi; install btf.h -m 644 '''/usr/local/include/bpf';
if [ ! -d '''/usr/local/include/bpf' ]; then install -d -m 755 '''/usr/local/include/bpf'; fi; install xsk.h -m 644 '''/usr/local/include/bpf';
# ls /usr/local/include/bpf/
bpf.h btf.h libbpf.h xsk.h
After:
# make install_headers
INSTALL headers
# ls /usr/local/include/bpf/
bpf.h btf.h libbpf.h xsk.h
Fixes: a493f5f9d8c2 ("libbpf: Install btf.h with libbpf")
Fixes: 379e2014c95b ("libbpf: add xsk.h to install_headers target")
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Andrii Nakryiko <andriin@fb.com>
tools/lib/bpf/Makefile
patch
|
blob
|
history
diff --git
a/tools/lib/bpf/Makefile
b/tools/lib/bpf/Makefile
index 7beec4d5b52254ecf639d4a5363c7a9a11009d72..8e7c56e9590fbb0dfa2d76780696206b166ec440 100644
(file)
--- a/
tools/lib/bpf/Makefile
+++ b/
tools/lib/bpf/Makefile
@@
-220,8
+220,8
@@
install_lib: all_cmd
install_headers:
$(call QUIET_INSTALL, headers) \
$(call do_install,bpf.h,$(prefix)/include/bpf,644); \
- $(call do_install,libbpf.h,$(prefix)/include/bpf,644);
- $(call do_install,btf.h,$(prefix)/include/bpf,644);
+ $(call do_install,libbpf.h,$(prefix)/include/bpf,644);
\
+ $(call do_install,btf.h,$(prefix)/include/bpf,644);
\
$(call do_install,xsk.h,$(prefix)/include/bpf,644);
install: install_lib