Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / e6 / 229a7aede9c3773261c72d408501e4716f6ea9
1 Return-Path: <brett.viren@gmail.com>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id 3ED5A431FBF\r
6         for <notmuch@notmuchmail.org>; Mon, 23 Nov 2009 07:31:49 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 Received: from olra.theworths.org ([127.0.0.1])\r
9         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
10         with ESMTP id yBmrpjFX8fs9 for <notmuch@notmuchmail.org>;\r
11         Mon, 23 Nov 2009 07:31:48 -0800 (PST)\r
12 Received: from mail-pw0-f51.google.com (mail-pw0-f51.google.com\r
13         [209.85.160.51])\r
14         by olra.theworths.org (Postfix) with ESMTP id 9AA41431FAE\r
15         for <notmuch@notmuchmail.org>; Mon, 23 Nov 2009 07:31:48 -0800 (PST)\r
16 Received: by pwj10 with SMTP id 10so3471636pwj.30\r
17         for <notmuch@notmuchmail.org>; Mon, 23 Nov 2009 07:31:48 -0800 (PST)\r
18 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;\r
19         h=domainkey-signature:mime-version:received:date:message-id:subject\r
20         :from:to:content-type;\r
21         bh=5Q9e9jwxcevwb7HuYNdXoh7DCNgcnOfx8+cO7+3ChOQ=;\r
22         b=KWGZ+mJox7RLVvSJ7ygjA/GWYqjYCAv2C9r37rdmIL4JV+7O+kHfC43T7Tvd76n2rh\r
23         mphPDuzkikujZJ4xUl+6cguAsYvAhf9VUKZRjMZ3oyLMeGm8b/aW3zK/Xb/7MZx/+rsn\r
24         SGNhDiOrrN017ETd9mPDrUW2IuivCcYBH7/Yk=\r
25 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma;\r
26         h=mime-version:date:message-id:subject:from:to:content-type;\r
27         b=HzQ2l7IYyMRiDsqf3c1cv0c3ygvRUCdlS1wkb+rxNycm5mEXrQYjRQXm7wOk32DyJs\r
28         Q4t36QvurweeHzRI6zya/o9/ZjIridw2YRaHTqPIefb6vDT4vZcKmhNYq0Epg+mkvv2K\r
29         pfulM/bOfr63wEN+wEmod7ZjViF2ELLHFqUAM=\r
30 MIME-Version: 1.0\r
31 Received: by 10.114.163.13 with SMTP id l13mr9241795wae.139.1258990307431; \r
32         Mon, 23 Nov 2009 07:31:47 -0800 (PST)\r
33 Date: Mon, 23 Nov 2009 10:31:47 -0500\r
34 Message-ID: <46263c600911230731i529f2db5rec11bed02f84ef13@mail.gmail.com>\r
35 From: Brett Viren <brett.viren@gmail.com>\r
36 To: notmuch@notmuchmail.org\r
37 Content-Type: text/plain; charset=ISO-8859-1\r
38 Subject: [notmuch] [patch] Trivial fix for non-root install\r
39 X-BeenThere: notmuch@notmuchmail.org\r
40 X-Mailman-Version: 2.1.12\r
41 Precedence: list\r
42 List-Id: "Use and development of the notmuch mail system."\r
43         <notmuch.notmuchmail.org>\r
44 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
45         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
46 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
47 List-Post: <mailto:notmuch@notmuchmail.org>\r
48 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
49 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
50         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
51 X-List-Received-Date: Mon, 23 Nov 2009 15:31:49 -0000\r
52 \r
53 Installing as a normal user fails because the bash completion config\r
54 files try to install into /etc.  This trivial patch fixes this.\r
55 \r
56 diff --git a/Makefile.config b/Makefile.config\r
57 index ddc7436..c04d57a 100644\r
58 --- a/Makefile.config\r
59 +++ b/Makefile.config\r
60 @@ -1,3 +1,2 @@\r
61 -prefix = /usr/local\r
62 -bash_completion_dir = /etc/bash_completion.d\r
63 +bash_completion_dir = $(prefix)/etc/bash_completion.d\r
64  CFLAGS += -DHAVE_VALGRIND\r
65 \r
66 \r
67 -Brett.\r