From 1e3ce2a36f651641b9158a476dd65ebda0978b83 Mon Sep 17 00:00:00 2001 From: JL2210 Date: Sun, 5 Apr 2020 16:00:45 -0400 Subject: [PATCH] Use more conventional permissions and man-page directory As 444 and 555 seem to be used for no apparent reason, use the more conventional 644 and 755. /man is typically unused or a symlink to /share/man now, so just use /share/man. Signed-off-by: JL2210 --- Makefile | 6 +++--- README.rst | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 1348ad7f..c7fd7055 100644 --- a/Makefile +++ b/Makefile @@ -14,10 +14,10 @@ Q := @ PREFIX := /usr/local bindir := ${PREFIX}/bin -mandir := ${PREFIX}/man +mandir := ${PREFIX}/share/man STRIP := -s -BINMODE := 555 -MANMODE := 444 +BINMODE := 755 +MANMODE := 644 CHECKPATCH := ../linux/scripts/checkpatch.pl # Other variables diff --git a/README.rst b/README.rst index 477844df..2d499b1e 100644 --- a/README.rst +++ b/README.rst @@ -147,7 +147,7 @@ This is the complete list of user-defined variables: ``${PREFIX}/bin``. - ``mandir``: Location where the manpages will be installed. Defaults to - ``${PREFIX}/man``. + ``${PREFIX}/share/man``. - ``DESTDIR``: This is prepended to all paths during the installation. It is mainly used for packaging. @@ -158,9 +158,9 @@ This is the complete list of user-defined variables: - ``STRIP``: Whether to strip the installed binaries of debug symbols or not. Defaults to ``-s``. -- ``BINMODE``: Permissions of the installed binaries. Defaults to ``555``. +- ``BINMODE``: Permissions of the installed binaries. Defaults to ``755``. -- ``MANMODE``: Permissions of the installed manpages. Defaults to ``444``. +- ``MANMODE``: Permissions of the installed manpages. Defaults to ``644``. - ``CHECKPATCH``: Path of the script ``checkpatch.pl`` of the Linux kernel. Defaults to ``../linux/scripts/checkpatch.pl``.