diff options
author | Teddy Wing | 2022-05-22 06:27:18 +0200 |
---|---|---|
committer | Teddy Wing | 2022-05-22 06:27:18 +0200 |
commit | 89261751eb5bdca404901298bf154e7d6f3c1799 (patch) | |
tree | 312e637121528b13dd7ce333e4efda137029dffe | |
parent | d7607cf54769259077acc3acc1f224960639476a (diff) | |
download | wajir-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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)/ |