Avoid installing shared libraries to man-page directories.

This commit is contained in:
Peter Michael Green 2019-01-10 13:50:19 +00:00
parent 2e229d667f
commit 9a39627452
1 changed files with 2 additions and 2 deletions

View File

@ -106,9 +106,9 @@ install: $(ALL)
if which python2; then python2 setup.py install $(PYINSTALLARGS); fi
if which python3; then python3 setup.py install $(PYINSTALLARGS); fi
install -m 0755 -d $(DESTDIR)$(mandir)/man1
install -m 0644 *.1 $(DESTDIR)$(mandir)/man1
install -m 0644 p*.1 $(DESTDIR)$(mandir)/man1
install -m 0755 -d $(DESTDIR)$(mandir)/man3
install -m 0644 *.3 $(DESTDIR)$(mandir)/man3
install -m 0644 p*.3 $(DESTDIR)$(mandir)/man3
ifeq ($(DESTDIR),)
ldconfig
endif