Re: [PATCH v3] Allow content preference based on message content.
[notmuch-archives.git] / dc / 5b8859f7cc0b2f74ed9893bf9f3bdcf1784f36
1 Return-Path: <jrollins@finestructure.net>\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 0AF84431FAE\r
6         for <notmuch@notmuchmail.org>; Sun, 22 Nov 2009 13:58:35 -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 DCzWMKQYzxR1 for <notmuch@notmuchmail.org>;\r
11         Sun, 22 Nov 2009 13:58:31 -0800 (PST)\r
12 Received: from serrano.cc.columbia.edu (serrano.cc.columbia.edu [128.59.29.6])\r
13         by olra.theworths.org (Postfix) with ESMTP id B5089431FBC\r
14         for <notmuch@notmuchmail.org>; Sun, 22 Nov 2009 13:58:31 -0800 (PST)\r
15 Received: from servo.finestructure.net (cpe-72-227-128-66.nyc.res.rr.com\r
16         [72.227.128.66])\r
17         (user=jgr2110 author=jrollins@finestructure.net mech=PLAIN bits=0)\r
18         by serrano.cc.columbia.edu (8.14.3/8.14.3) with ESMTP id nAMLwU2X012274\r
19         (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NOT)\r
20         for <notmuch@notmuchmail.org>; Sun, 22 Nov 2009 16:58:31 -0500 (EST)\r
21 Received: from jrollins by servo.finestructure.net with local (Exim 4.69)\r
22         (envelope-from <jrollins@finestructure.net>)\r
23         id 1NCKSE-0000Gq-Fn; Sun, 22 Nov 2009 16:58:46 -0500\r
24 From: Jameson Graef Rollins <jrollins@finestructure.net>\r
25 To: notmuch@notmuchmail.org\r
26 Date: Sun, 22 Nov 2009 16:58:34 -0500\r
27 Message-Id: <1258927116-528-1-git-send-email-jrollins@finestructure.net>\r
28 X-Mailer: git-send-email 1.6.5\r
29 X-No-Spam-Score: Local\r
30 X-Scanned-By: MIMEDefang 2.65 on 128.59.29.6\r
31 Subject: [notmuch] [PATCH 1/3] remove Makefile.config from source to allow\r
32         for custom config.\r
33 X-BeenThere: notmuch@notmuchmail.org\r
34 X-Mailman-Version: 2.1.12\r
35 Precedence: list\r
36 List-Id: "Use and development of the notmuch mail system."\r
37         <notmuch.notmuchmail.org>\r
38 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
39         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
40 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
41 List-Post: <mailto:notmuch@notmuchmail.org>\r
42 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
43 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
44         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
45 X-List-Received-Date: Sun, 22 Nov 2009 21:58:35 -0000\r
46 \r
47 Modified ./configure script to generate a Makefile.config if it\r
48 doesn't exist.  This will allow people to maintain custom\r
49 Makefile.config files without causing conflicts with the repository.\r
50 ---\r
51  Makefile.config |    2 --\r
52  configure       |    8 ++++++++\r
53  2 files changed, 8 insertions(+), 2 deletions(-)\r
54  delete mode 100644 Makefile.config\r
55 \r
56 diff --git a/Makefile.config b/Makefile.config\r
57 deleted file mode 100644\r
58 index d72a39e..0000000\r
59 --- a/Makefile.config\r
60 +++ /dev/null\r
61 @@ -1,2 +0,0 @@\r
62 -prefix = /usr/local\r
63 -bash_completion_dir = /etc/bash_completion.d\r
64 diff --git a/configure b/configure\r
65 index fe46c8e..c63f70d 100755\r
66 --- a/configure\r
67 +++ b/configure\r
68 @@ -109,6 +109,14 @@ configure again to ensure the packages can be found, or simply run\r
69  EOF\r
70      exit 1\r
71  else\r
72 +\r
73 +if [ ! -e Makefile.config ] ; then\r
74 +    cat <<EOF >Makefile.config\r
75 +prefix = /usr/local\r
76 +bash_completion_dir = /etc/bash_completion.d\r
77 +EOF\r
78 +fi\r
79 +\r
80  cat <<EOF\r
81  \r
82  All required packages were found. You may now run the following\r
83 -- \r
84 1.6.5\r
85 \r