mirror of
https://github.com/linux-speakup/espeakup.git
synced 2026-08-20 23:04:18 +02:00
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:
parent
4cfcd7ba11
commit
8fda956e02
1 changed files with 2 additions and 2 deletions
4
Makefile
4
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue