diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2012-09-24 00:49:17 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2012-09-24 00:49:17 +0200 |
commit | ec5eeec7445fe3d662ddd8e1df573931b9bb312c (patch) | |
tree | 3f61146fc0cf541d591086cde0bdc6514abda9f6 /Makefile | |
parent | 96836e447afac427a5cdd87534146418146dc8f9 (diff) | |
download | pass-ec5eeec7445fe3d662ddd8e1df573931b9bb312c.tar.gz pass-ec5eeec7445fe3d662ddd8e1df573931b9bb312c.tar.bz2 pass-ec5eeec7445fe3d662ddd8e1df573931b9bb312c.zip |
Style fixes.1.4
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -30,10 +30,10 @@ ifneq ($(strip $(wildcard $(PLATFORMFILE))),) install-platform: @install -m 0644 -v "$(PLATFORMFILE)" "$(DESTDIR)$(LIBDIR)/password-store.platform.sh" # The -i "" doesn't work on GNU, where the extra argument isn't needed. Fortuantely, platform file is for non-GNU only. - sed -i "" 's:.*platform-defined-functions.*:source $(DESTDIR)$(LIBDIR)/password-store.platform.sh:' $(DESTDIR)$(BINDIR)/pass + sed -i "" 's:.*platform-defined-functions.*:source $(DESTDIR)$(LIBDIR)/password-store.platform.sh:' "$(DESTDIR)$(BINDIR)/pass" else install-platform: endif uninstall: - @rm -vf $(DESTDIR)$(BINDIR)/pass $(DESTDIR)$(MANDIR)/man1/pass.1 $(DESTDIR)$(SYSCONFDIR)/bash_completion.d/password-store $(DESTDIR)$(LIBDIR)/password-store.platform.sh + @rm -vf "$(DESTDIR)$(BINDIR)/pass" "$(DESTDIR)$(MANDIR)/man1/pass.1" "$(DESTDIR)$(SYSCONFDIR)/bash_completion.d/password-store" "$(DESTDIR)$(LIBDIR)/password-store.platform.sh" |