diff options
author | Jesper Dangaard Brouer <brouer@redhat.com> | 2018-01-17 00:20:40 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-04-26 11:02:05 +0200 |
commit | 0d9a46ae3204b0d07ec6a4de00573cf12b0b1822 (patch) | |
tree | 0a6c352647cb27448e336e8dbb9c08bacbb17cad /tools/lib | |
parent | d925c308742284e508c984bc820b47a3d5c88397 (diff) | |
download | linux-stable-0d9a46ae3204b0d07ec6a4de00573cf12b0b1822.tar.gz linux-stable-0d9a46ae3204b0d07ec6a4de00573cf12b0b1822.tar.bz2 linux-stable-0d9a46ae3204b0d07ec6a4de00573cf12b0b1822.zip |
libbpf: Makefile set specified permission mode
[ Upstream commit 7110d80d53f472956420cd05a6297f49b558b674 ]
The third parameter to do_install was not used by $(INSTALL) command.
Fix this by only setting the -m option when the third parameter is supplied.
The use of a third parameter was introduced in commit eb54e522a000 ("bpf:
install libbpf headers on 'make install'").
Without this change, the header files are install as executables files (755).
Fixes: eb54e522a000 ("bpf: install libbpf headers on 'make install'")
Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/lib')
-rw-r--r-- | tools/lib/bpf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/bpf/Makefile b/tools/lib/bpf/Makefile index 4555304dc18e..f02448e86d38 100644 --- a/tools/lib/bpf/Makefile +++ b/tools/lib/bpf/Makefile @@ -183,7 +183,7 @@ define do_install if [ ! -d '$(DESTDIR_SQ)$2' ]; then \ $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$2'; \ fi; \ - $(INSTALL) $1 '$(DESTDIR_SQ)$2' + $(INSTALL) $1 $(if $3,-m $3,) '$(DESTDIR_SQ)$2' endef install_lib: all_cmd |