diff options
author | EuAndreh <eu@euandre.org> | 2021-07-23 09:25:11 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-07-23 09:25:11 -0300 |
commit | ffb58035857f00cc5dd829c455e913ade17c36cb (patch) | |
tree | 84d303b0bbd6b96b528128c52cf7a3b3ca979a4d /Makefile | |
parent | TODOs.md: Add #task-bf65e50a-b424-9fce-ba8e-fcd6b3bf1c7a (diff) | |
download | git-permalink-ffb58035857f00cc5dd829c455e913ade17c36cb.tar.gz git-permalink-ffb58035857f00cc5dd829c455e913ade17c36cb.tar.xz |
Makefile: Use $(PREFIX) directly over the $(MANPREFIX) variable
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) |