Skip to content

Commit

Permalink
Fix man page installation to use mandir (Issue #55)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrsweet committed Dec 4, 2023
1 parent d92b72e commit 8628175
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@ install: $(TARGETS)
for file in doc/pdfio.html doc/pdfio-512.png LICENSE NOTICE; do \
$(INSTALL) -c -m 644 $$file $(BUILDROOT)$(datadir)/doc/pdfio; \
done
echo Installing man page to $(BUILDROOT)$(datadir)/man/man3...
$(INSTALL) -d -m 755 $(BUILDROOT)$(datadir)/man/man3
$(INSTALL) -c -m 644 doc/pdfio.3 $(BUILDROOT)$(datadir)/man/man3
echo Installing man page to $(BUILDROOT)$(mandir)/man3...
$(INSTALL) -d -m 755 $(BUILDROOT)$(mandir)/man3
$(INSTALL) -c -m 644 doc/pdfio.3 $(BUILDROOT)$(mandir)/man3


# Test everything
Expand Down

0 comments on commit 8628175

Please sign in to comment.