aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2025-05-06 20:05:31 -0400
committerB. Watson <urchlay@slackware.uk>2025-05-06 20:05:31 -0400
commitcbf1d6dc7eb84d357928474405bbc2a5bc3a4adc (patch)
treec1a3a12803690bb1dc442c38fe8521caf6f7da9a
parentfe3b0618b09a3239d009fa4ae4f3b814f6c3d51a (diff)
downloadmarsond-0.1.tar.gz
Makefile: fix installed permissions.0.1
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 06b7d5a..36e5ddb 100644
--- a/Makefile
+++ b/Makefile
@@ -29,9 +29,10 @@ DOCDIR=/usr/doc/$(PROJ)-$(VERSION)
UDEVDIR=/etc/udev/rules.d
INSTALL=install
-INSTALL_MAN=$(INSTALL)
-INSTALL_UDEV=$(INSTALL)
-INSTALL_DOC=$(INSTALL)
+INSTALL_FILE=$(INSTALL) -m0644
+INSTALL_MAN=$(INSTALL_FILE)
+INSTALL_UDEV=$(INSTALL_FILE)
+INSTALL_DOC=$(INSTALL_FILE)
INSTALL_BIN=$(INSTALL) -s -m0755
# Build with GZIP=false to avoid gzipping the man page.