aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTad Fisher <tadfisher@gmail.com>2017-03-16 12:36:25 -0700
committerGitHub <noreply@github.com>2017-03-16 12:36:25 -0700
commitb13ce53fc100b9c18494786deff934cb56ff1535 (patch)
treed24fee4dcf92f961b14acc898f35b992db82aa1a /Makefile
parent022eb4f5b6e06af185b3cc84db722e6023a9d13a (diff)
parent577f14dbff0efc19cebf6fcfdb67115fc25d3395 (diff)
Merge pull request #11 from tadfisher/mac-makefile
Makefile: remove -D for macOS compatibility
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c3ad5b1..a0542b9 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ all:
install:
@install -v -d "$(DESTDIR)$(MANDIR)/man1" && install -m 0644 -v pass-$(PROG).1 "$(DESTDIR)$(MANDIR)/man1/pass-$(PROG).1"
@install -v -d "$(DESTDIR)$(SYSTEM_EXTENSION_DIR)/"
- @install -Dm0755 $(PROG).bash "$(DESTDIR)$(SYSTEM_EXTENSION_DIR)/$(PROG).bash"
+ @install -v -m0755 $(PROG).bash "$(DESTDIR)$(SYSTEM_EXTENSION_DIR)/$(PROG).bash"
@echo
@echo "pass-$(PROG) is installed succesfully"
@echo