From 8fda956e020abcde9365c20c6e14f3ebc15cd2e1 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Fri, 9 Oct 2009 11:20:17 -0500 Subject: [PATCH] fixed permissions in makefile It turns out that the install commands need to have the permission options otherwise the permission of everything that is installed is 755, which is not correct. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index eab706a..ca700aa 100644 --- a/Makefile +++ b/Makefile @@ -30,8 +30,8 @@ all: espeakup install: espeakup $(INSTALL) -d $(DESTDIR)$(BINDIR) $(INSTALL) -d $(DESTDIR)$(MANDIR)/man8 - $(INSTALL) $< $(DESTDIR)$(BINDIR) - $(INSTALL) espeakup.8 $(DESTDIR)$(MANDIR)/man8 + $(INSTALL) -m 755 $< $(DESTDIR)$(BINDIR) + $(INSTALL) -m 644 espeakup.8 $(DESTDIR)$(MANDIR)/man8 clean: $(RM) *.d *.o