summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoey Hess <joeyh@joeyh.name>2021-09-19 09:31:14 -0400
committerJoey Hess <joeyh@joeyh.name>2021-09-19 09:31:14 -0400
commit6140dbc815ef70b11982ff1ed7b3885426e30dda (patch)
tree17bb7a79ce60efe5e6a8f6641495997f26bbc3b2 /Makefile
parentf0642d6331e89ca5a6ced8c0f1744428983e1780 (diff)
downloadmoreutils-6140dbc815ef70b11982ff1ed7b3885426e30dda.tar.gz
Makefile: Install man pages without executable bit
Thanks, meator
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 01db97a..cb9c10b 100644
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,7 @@ install:
install $(PERLSCRIPTS) $(DESTDIR)$(PREFIX)/bin
mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1
- install $(MANS) $(DESTDIR)$(PREFIX)/share/man/man1
+ install -m 644 $(MANS) $(DESTDIR)$(PREFIX)/share/man/man1
uninstall:
for i in $(BINS) $(PERLSCRIPTS); do rm -f $(DESTDIR)$(PREFIX)/bin/$$i; done