aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2022-05-22 06:27:18 +0200
committerTeddy Wing2022-05-22 06:27:18 +0200
commit89261751eb5bdca404901298bf154e7d6f3c1799 (patch)
tree312e637121528b13dd7ce333e4efda137029dffe
parentd7607cf54769259077acc3acc1f224960639476a (diff)
downloadwajir-89261751eb5bdca404901298bf154e7d6f3c1799.tar.bz2
Makefile: Remove filenames from install destinations
Install to directories instead of filenames. We don't need the filenames, and on top of that, `$(MAN_PAGE)` was wrong, as it includes the "doc/" prefix.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fdec23f..2601cad 100644
--- a/Makefile
+++ b/Makefile
@@ -81,7 +81,7 @@ wajir_$(VERSION).tar.bz2: bundle wajir.asd src/*.lisp
.PHONY: install
install: bundle/bundled-local-projects/0000/wajir/wajir $(MAN_PAGE)
- install -m 755 bundle/bundled-local-projects/0000/wajir/wajir $(DESTDIR)$(bindir)/wajir
+ install -m 755 bundle/bundled-local-projects/0000/wajir/wajir $(DESTDIR)$(bindir)/
install -d $(DESTDIR)$(man1dir)
- install -m 644 $(MAN_PAGE) $(DESTDIR)$(man1dir)/$(MAN_PAGE)
+ install -m 644 $(MAN_PAGE) $(DESTDIR)$(man1dir)/