Skip to content

Commit

Permalink
Fix man page and header file install permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
choll committed Nov 26, 2023
1 parent b102dbd commit 1cae073
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -234,10 +234,10 @@ install: $(TARGET) $(XTRCTL_TARGET) docs
mkdir -p $(PREFIX)/lib $(PREFIX)/bin $(PREFIX)/include/xtr/detail $(PREFIX)/man/man1 $(PREFIX)/man/man3
install $(TARGET) $(PREFIX)/lib
install $(XTRCTL_TARGET) $(PREFIX)/bin
install include/xtr/*.hpp $(PREFIX)/include/xtr/
install include/xtr/detail/*.hpp $(PREFIX)/include/xtr/detail/
install $(MAN3_PAGES) $(PREFIX)/man/man3
install $(MAN1_PAGES) $(PREFIX)/man/man1
install --mode=644 include/xtr/*.hpp $(PREFIX)/include/xtr/
install --mode=644 include/xtr/detail/*.hpp $(PREFIX)/include/xtr/detail/
install --mode=644 $(MAN3_PAGES) $(PREFIX)/man/man3
install --mode=644 $(MAN1_PAGES) $(PREFIX)/man/man1

clean:
$(RM) $(TARGET) $(TEST_TARGET) $(BENCH_TARGET) $(XTRCTL_TARGET) \
Expand Down

0 comments on commit 1cae073

Please sign in to comment.