aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2022-05-22 06:44:47 +0200
committerTeddy Wing2022-05-22 06:44:47 +0200
commitf325c3675a9d2b1facd5b9d2b472e2dd912d0e55 (patch)
treeee4a5187a3c357dc44597610b2a6c007678b72db
parent89261751eb5bdca404901298bf154e7d6f3c1799 (diff)
downloadwajir-master.tar.bz2
Makefile: Remove trailing slashes from install directoriesHEADv0.0.1master
I think this is confusing Homebrew.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2601cad..69c6b48 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)/
+ install -m 755 bundle/bundled-local-projects/0000/wajir/wajir $(DESTDIR)$(bindir)
install -d $(DESTDIR)$(man1dir)
- install -m 644 $(MAN_PAGE) $(DESTDIR)$(man1dir)/
+ install -m 644 $(MAN_PAGE) $(DESTDIR)$(man1dir)