#182: superiotool installs man page with +x perms ----------------------------+---------------------------------- Reporter: anonymous | Owner: uwe@… Type: defect | Status: new Priority: minor | Milestone: Going mainstream Component: superiotool | Keywords: Dependencies: | Patch Status: there is no patch ----------------------------+---------------------------------- simple fix:
{{{ --- Makefile (revision 6637) +++ Makefile (working copy) @@ -71,7 +71,7 @@ install: $(PROGRAM) mkdir -p $(DESTDIR)$(PREFIX)/sbin $(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/sbin mkdir -p $(DESTDIR)$(PREFIX)/share/man/man8 - $(INSTALL) $(PROGRAM).8 $(DESTDIR)$(PREFIX)/share/man/man8 + $(INSTALL) -m 644 $(PROGRAM).8 $(DESTDIR)$(PREFIX)/share/man/man8
clean: rm -f $(PROGRAM) *.o }}}