From 32c4d13535bc86f73d13370e6999523c6ca54a23 Mon Sep 17 00:00:00 2001 From: Alexandre Pujol Date: Sat, 16 Sep 2017 19:36:49 +0100 Subject: [PATCH] Make the makefile OS X compatible --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8abf19f..d4df470 100644 --- a/Makefile +++ b/Makefile @@ -14,9 +14,10 @@ all: @echo " password store" install: - @install -v -d "$(DESTDIR)$(MANDIR)/man1" && install -m 0644 -v pass-$(PROG).1 "$(DESTDIR)$(MANDIR)/man1/pass-$(PROG).1" + @install -v -d "$(DESTDIR)$(MANDIR)/man1" @install -v -d "$(DESTDIR)$(SYSTEM_EXTENSION_DIR)/" - @install -Dm0755 $(PROG).bash "$(DESTDIR)$(SYSTEM_EXTENSION_DIR)/$(PROG).bash" + @install -v -m 0755 $(PROG).bash "$(DESTDIR)$(SYSTEM_EXTENSION_DIR)/$(PROG).bash" + @install -v -m 0644 pass-$(PROG).1 "$(DESTDIR)$(MANDIR)/man1/pass-$(PROG).1" @echo @echo "pass-$(PROG) is installed succesfully" @echo