fix make install directiories permissions
Hi everyone! On my system I have strict umask set, so make install creates them unreadable by non-root. This trivial fix ensures, that directories are created as expected. Leszek
This commit is contained in:
parent
e88cc08d79
commit
cd54bcd041
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -58,7 +58,7 @@ clean:
|
|||
$(RM) $(DOCS) aerc.conf aerc
|
||||
|
||||
install: all
|
||||
mkdir -p $(BINDIR) $(MANDIR)/man1 $(MANDIR)/man5 $(MANDIR)/man7 \
|
||||
mkdir -m755 -p $(BINDIR) $(MANDIR)/man1 $(MANDIR)/man5 $(MANDIR)/man7 \
|
||||
$(SHAREDIR) $(SHAREDIR)/filters $(SHAREDIR)/templates
|
||||
install -m755 aerc $(BINDIR)/aerc
|
||||
install -m644 aerc.1 $(MANDIR)/man1/aerc.1
|
||||
|
|
Loading…
Reference in a new issue