diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,6 +1,5 @@ .POSIX: PREFIX = /usr/local -MANPREFIX = $(PREFIX)/share/man DATE = 2021-07-16 VERSION = 0.2.3 NAME = git-permalink @@ -43,11 +42,11 @@ dev-check: check public install: all mkdir -p $(DESTDIR)$(PREFIX)/bin cp src/git-permalink $(DESTDIR)$(PREFIX)/bin - sh aux/workflow/manpages.sh -ip $(DESTDIR)$(MANPREFIX) $(manpages) + sh aux/workflow/manpages.sh -ip $(DESTDIR)$(PREFIX)/share/man $(manpages) uninstall: rm -f $(DESTDIR)$(PREFIX)/bin/git-permalink - sh aux/workflow/manpages.sh -up $(DESTDIR)$(MANPREFIX) $(manpages) + sh aux/workflow/manpages.sh -up $(DESTDIR)$(PREFIX)/share/man $(manpages) installcheck: sh aux/workflow/installcheck.sh -x1 -l1 -f5 -p $(PREFIX) |