From d65d31b0d73456b02b70509719c035a9443dafca Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 25 Jun 2021 12:56:13 -0300 Subject: Makefile: Fix installation path of manpages --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6d90850..a1249d6 100644 --- a/Makefile +++ b/Makefile @@ -41,11 +41,11 @@ install: all mkdir -p $(DESTDIR)$(PREFIX)/bin cp src/git-permalink.sh $(DESTDIR)$(PREFIX)/bin/$(NAME) chmod +x $(DESTDIR)$(PREFIX)/bin/$(NAME) - sh aux/workflow/manpages.sh -ip $(DESTDIR)$(PREFIX) $(manpages) + sh aux/workflow/manpages.sh -ip $(DESTDIR)$(MANPREFIX) $(manpages) uninstall: rm -f $(DESTDIR)$(PREFIX)/bin/$(NAME) - sh aux/workflow/manpages.sh -up $(DESTDIR)$(PREFIX) $(manpages) + sh aux/workflow/manpages.sh -up $(DESTDIR)$(MANPREFIX) $(manpages) clean: rm -rf public/ src/git-permalink.sh $(manpages) -- cgit v1.2.3