From: Peter Michael Green Date: Thu, 10 Jan 2019 13:50:19 +0000 (+0000) Subject: Avoid installing shared libraries to man-page directories. X-Git-Tag: archive/raspbian/1.68-2+rpi1~26 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=9a396274520148c3c7b6dc916d751035f690b308;p=pigpio.git Avoid installing shared libraries to man-page directories. --- diff --git a/Makefile b/Makefile index b73505a..9e43eab 100644 --- a/Makefile +++ b/Makefile @@ -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