summaryrefslogtreecommitdiff
path: root/install.do
diff options
context:
space:
mode:
authorSam Nystrom <sam@samnystrom.dev>2023-06-23 08:42:45 -0400
committerSam Nystrom <sam@samnystrom.dev>2023-06-23 08:42:45 -0400
commitef7bab60bd21cf8ad4baf5be248d373a4ad2ac86 (patch)
tree57c4bd80377f13c90f720a527cc46bd513c8445f /install.do
parent7adfc2450187fff94266a01ac6e9b967dcc0481c (diff)
fix file permissions for man page in install.do
Diffstat (limited to 'install.do')
-rw-r--r--install.do2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.do b/install.do
index 8d08b3d..ff27af6 100644
--- a/install.do
+++ b/install.do
@@ -4,5 +4,5 @@ MANDIR="${MANDIR:-$PREFIX/share/man}"
if haredo all; then
install -Dm755 ./srtplay "$BINDIR"/srtplay
- install -Dm755 ./srtplay.1 "$MANDIR"/man1/srtplay.1
+ install -Dm644 ./srtplay.1 "$MANDIR"/man1/srtplay.1
fi