Skip to content
Snippets Groups Projects
Commit cb05ad0c authored by Von Welch's avatar Von Welch Committed by Jason A. Donenfeld
Browse files

Makefile: appropriate mkdir -p for completion

Fix for c832d464
parent 2e1520be
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ all:
@echo "Password store is a shell script, so there is nothing to do. Try \"make install\" instead."
install:
@mkdir -p "$(DESTDIR)$(BINDIR)" "$(DESTDIR)$(LIBDIR)" "$(DESTDIR)$(MANDIR)/man1" "$(DESTDIR)$(SYSCONFDIR)/bash_completion.d"
@mkdir -p "$(DESTDIR)$(BINDIR)" "$(DESTDIR)$(LIBDIR)" "$(DESTDIR)$(MANDIR)/man1" "$(DESTDIR)$(PREFIX)/share/bash-completion/completions/"
@install -m 0755 -v src/password-store.sh "$(DESTDIR)$(BINDIR)/pass"
@install -m 0644 -v man/pass.1 "$(DESTDIR)$(MANDIR)/man1/pass.1"
@install -m 0644 -v contrib/pass.bash-completion "$(DESTDIR)$(PREFIX)/share/bash-completion/completions/password-store"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment