diff options
author | Tad Fisher <tad@simple.com> | 2017-03-16 12:35:14 -0700 |
---|---|---|
committer | Tad Fisher <tad@simple.com> | 2017-03-16 12:35:14 -0700 |
commit | 577f14dbff0efc19cebf6fcfdb67115fc25d3395 (patch) | |
tree | d24fee4dcf92f961b14acc898f35b992db82aa1a /Makefile | |
parent | a4e02eabb56faa60b1c29fc4008193135a7cfd47 (diff) | |
download | pass-otp-577f14dbff0efc19cebf6fcfdb67115fc25d3395.tar.gz pass-otp-577f14dbff0efc19cebf6fcfdb67115fc25d3395.zip |
Makefile: remove -D for macOS compatibility
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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 @@ -24,8 +24,7 @@ install: uninstall: @rm -vrf \ "$(DESTDIR)$(SYSTEM_EXTENSION_DIR)/$(PROG).bash" \ - "$(DESTDIR)$(IMPORTERS_DIR)/" \ - "$(DESTDIR)$(MANDIR)/man1/pass-$(PROG).1" \ + "$(DESTDIR)$(MANDIR)/man1/pass-$(PROG).1" test: make -C tests |