From 38af45c79771da1ef52309d101e881aaef94a823 Mon Sep 17 00:00:00 2001 From: Aleksei Bavshin Date: Tue, 2 Aug 2022 23:38:01 -0700 Subject: [PATCH] Install man file with correct permissions --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2f92f79..13a5e31 100644 --- a/Makefile +++ b/Makefile @@ -21,8 +21,8 @@ $(OBJ): $(GEN) $(SCANNER) client-header < $< > $@ install: wlopm - install -D wlopm $(DESTDIR)$(BINDIR)/wlopm - install -D wlopm.1 $(DESTDIR)$(MANDIR)/man1/wlopm.1 + install -D wlopm $(DESTDIR)$(BINDIR)/wlopm + install -m 644 -D wlopm.1 $(DESTDIR)$(MANDIR)/man1/wlopm.1 uninstall: $(RM) $(DESTDIR)$(BINDIR)/wlopm