aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-06-25 12:56:13 -0300
committerEuAndreh <eu@euandre.org>2021-06-25 12:56:13 -0300
commitd65d31b0d73456b02b70509719c035a9443dafca (patch)
treec685324db13608a9bdc6c6fe7d32a0a6c0dc98ed
parentMakefile: Make "spellcheck" depend on "public" (diff)
downloadgit-permalink-d65d31b0d73456b02b70509719c035a9443dafca.tar.gz
git-permalink-d65d31b0d73456b02b70509719c035a9443dafca.tar.xz
Makefile: Fix installation path of manpages
Diffstat (limited to '')
-rw-r--r--Makefile4
1 files 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)