diff options
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -228,7 +228,7 @@ install: all cp $(NAME).bin '$(DESTDIR)$(BINDIR)'/$(NAME) cp src/$(NAME).a '$(DESTDIR)$(GOLIBDIR)' cp $(sources) '$(DESTDIR)$(SRCDIR)' - mandir install '$(DESTDIR)$(MANDIR)' $(manpages.N) + instool '$(DESTDIR)$(MANDIR)' install man $(manpages.N) ## Uninstalls from $(DESTDIR)$(PREFIX). This is a perfect mirror ## of the "install" target, and removes *all* that was installed. @@ -239,7 +239,7 @@ uninstall: '$(DESTDIR)$(GOLIBDIR)'/$(NAME).a \ '$(DESTDIR)$(SRCDIR)' \ - mandir uninstall '$(DESTDIR)$(MANDIR)' $(manpages.N) + instool '$(DESTDIR)$(MANDIR)' uninstall man $(manpages.N) |