From: Jameson Graef Rollins <jrollins@finestructure.net>
Date: Sat, 28 Nov 2009 23:57:37 +0000 (-0500)
Subject: fix Makefile.local to install bash completion definitions as not executable
X-Git-Tag: 0.1~219
X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=263aeb82f0a1a69864ca41cff4dfa2ae0b8b3f05;p=obsolete%2Fnotmuch-old

fix Makefile.local to install bash completion definitions as not executable
---

diff --git a/Makefile.local b/Makefile.local
index af1c9b5c..933ff4c7 100644
--- a/Makefile.local
+++ b/Makefile.local
@@ -45,7 +45,7 @@ install-emacs: install emacs
 
 install-bash:
 	install -d $(DESTDIR)$(bash_completion_dir)
-	install contrib/notmuch-completion.bash \
+	install -m0644 contrib/notmuch-completion.bash \
 		$(DESTDIR)$(bash_completion_dir)/notmuch
 
 SRCS  := $(SRCS) $(notmuch_client_srcs)