From f325c3675a9d2b1facd5b9d2b472e2dd912d0e55 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 22 May 2022 06:44:47 +0200 Subject: Makefile: Remove trailing slashes from install directories I think this is confusing Homebrew. --- Makefile | 4 ++-- 1 file 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) -- cgit v1.2.3