diff options
author | EuAndreh <eu@euandre.org> | 2021-06-25 12:56:13 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-25 12:56:13 -0300 |
commit | d65d31b0d73456b02b70509719c035a9443dafca (patch) | |
tree | c685324db13608a9bdc6c6fe7d32a0a6c0dc98ed | |
parent | Makefile: Make "spellcheck" depend on "public" (diff) | |
download | git-permalink-d65d31b0d73456b02b70509719c035a9443dafca.tar.gz git-permalink-d65d31b0d73456b02b70509719c035a9443dafca.tar.xz |
Makefile: Fix installation path of manpages
Diffstat (limited to '')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |