From bea339318a5cc8543918e2f8a65188b7064109b1 Mon Sep 17 00:00:00 2001 From: Ralph Ronnquist Date: Tue, 18 Feb 2025 21:32:57 +1100 Subject: [PATCH] avoid exec flag as appropriate --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e38bc20..ce2874d 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ $(SYSVINIT): init/blockdomains install -D $< $@ $(SYSTEMDINIT): init/blockdomains.service - install -D $< $@ + install -m 644 -D $< $@ $(CFGTOP)/%/: mkdir -p $@ @@ -52,9 +52,9 @@ $(SBINDIR)/%: % $(BINDIR)/%: % install -D $< $@ $(MAN5DIR)/%: % - install -D $< $@ + install -m 644 -D $< $@ $(MAN8DIR)/%: % - install -D $< $@ + install -m 644 -D $< $@ # Cleaning up -- 2.39.5