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.
This commit is contained in:
William Hubbs 2009-10-09 11:20:17 -05:00
commit 8fda956e02

View file

@ -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