Skip to content

Commit

Permalink
Fix permissions in make install
Browse files Browse the repository at this point in the history
  • Loading branch information
jhawthorn committed May 19, 2016
1 parent 73db8f8 commit 2540789
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ config.h:
install: fzy
mkdir -p $(DESTDIR)$(BINDIR)
cp fzy $(DESTDIR)$(BINDIR)/
chmod 755 ${DESTDIR}${BINDIR}/fzy
mkdir -p $(DESTDIR)$(MANDIR)/man1
cp fzy.1 $(DESTDIR)$(MANDIR)/man1/
chmod 644 ${DESTDIR}${MANDIR}/man1/fzy.1

fmt:
clang-format -i *.c *.h
Expand Down

0 comments on commit 2540789

Please sign in to comment.