From cbf1d6dc7eb84d357928474405bbc2a5bc3a4adc Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Tue, 6 May 2025 20:05:31 -0400 Subject: Makefile: fix installed permissions. --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Makefile') 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. -- cgit v1.2.3