<div>
                    <div>Hi everyone,</div><div><br></div><div>I'm new to the mailing list (and to pass). I brought light refreshments and two one-line patches (first one is below). I'm also interested in working on Android! Not sure if I can reply to that thread since it started before I was here.</div><div><br></div><div>This patch makes pass install cleanly from git with Homebrew on OSX.</div><div><br></div><div>A previous commit (c832d46) fixed the installation of the bash completions to be less invasive, but then seems to have left behind a bug in the Makefile because it creates a directory, then tries to install the bash completions to a different directory (which doesn't exist, due to Homebrew sandboxing everything).</div><div><br></div><div>Cheers,</div><div>Alex</div><div><br></div><div>---</div><div> Makefile | 2 +-</div><div> 1 file changed, 1 insertion(+), 1 deletion(-)</div><div><br></div><div>diff --git a/Makefile b/Makefile</div><div>index d134f26..ea37404 100644</div><div>--- a/Makefile</div><div>+++ b/Makefile</div><div>@@ -12,7 +12,7 @@ all:</div><div>    @echo "Password store is a shell script, so there is nothing to do. Try \"make install\" instead."</div><div><br></div><div> install:</div><div>-   @mkdir -p "$(DESTDIR)$(BINDIR)" "$(DESTDIR)$(LIBDIR)" "$(DESTDIR)$(MANDIR)/man1" "$(DESTDIR)$(SYSCONFDIR)/bash_completion.d"</div><div>+   @mkdir -p "$(DESTDIR)$(BINDIR)" "$(DESTDIR)$(LIBDIR)" "$(DESTDIR)$(MANDIR)/man1" "$(DESTDIR)$(PREFIX)/share/bash-completion/completions"</div><div>    @install -m 0755 -v src/password-store.sh "$(DESTDIR)$(BINDIR)/pass"</div><div>    @install -m 0644 -v man/pass.1 "$(DESTDIR)$(MANDIR)/man1/pass.1"</div><div>    @install -m 0644 -v contrib/pass.bash-completion "$(DESTDIR)$(PREFIX)/share/bash-completion/completions/password-store"</div><div>--</div><div>1.8.4</div>
                </div>
                <div></div>