mirror of https://gitee.com/openkylin/linux.git
Documentation: installed man pages don't need to be executable
Install the man pages with mode 644 instead of 755 Signed-off-by: Jim Davis <jim.epost@gmail.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
This commit is contained in:
parent
3d5583cc82
commit
fce96568f3
|
@ -60,7 +60,7 @@ mandocs: $(MAN)
|
|||
|
||||
installmandocs: mandocs
|
||||
mkdir -p /usr/local/man/man9/
|
||||
install $(obj)/man/*.9.gz /usr/local/man/man9/
|
||||
install -m 644 $(obj)/man/*.9.gz /usr/local/man/man9/
|
||||
|
||||
###
|
||||
#External programs used
|
||||
|
|
Loading…
Reference in New Issue