Re: [feature request] emacs: use `notmuch insert` for FCC
[notmuch-archives.git] / 89 / 551c20e1f29413617ef450f2af404c00edbdd6
1 Return-Path: <bremner@tethera.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 6161F429E29\r
6         for <notmuch@notmuchmail.org>; Thu,  2 Aug 2012 06:22:59 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 0\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
12         autolearn=disabled\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id mTTN6j8h+7yc for <notmuch@notmuchmail.org>;\r
16         Thu,  2 Aug 2012 06:22:58 -0700 (PDT)\r
17 Received: from tesseract.cs.unb.ca (tesseract.cs.unb.ca [131.202.240.238])\r
18         (using TLSv1 with cipher AES256-SHA (256/256 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id A8D99431FDE\r
21         for <notmuch@notmuchmail.org>; Thu,  2 Aug 2012 06:22:54 -0700 (PDT)\r
22 Received: from fctnnbsc30w-156034089108.dhcp-dynamic.fibreop.nb.bellaliant.net\r
23         ([156.34.89.108] helo=zancas.localnet)\r
24         by tesseract.cs.unb.ca with esmtpsa\r
25         (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72)\r
26         (envelope-from <bremner@tethera.net>)\r
27         id 1SwvMb-0003L6-Oj; Thu, 02 Aug 2012 10:22:53 -0300\r
28 Received: from bremner by zancas.localnet with local (Exim 4.80)\r
29         (envelope-from <bremner@tethera.net>)\r
30         id 1SwvMW-0006A4-At; Thu, 02 Aug 2012 10:22:48 -0300\r
31 From: david@tethera.net\r
32 To: notmuch@notmuchmail.org\r
33 Subject: [PATCH 1/3] build system: remove directories created by tests in\r
34         "make clean"\r
35 Date: Thu,  2 Aug 2012 10:22:35 -0300\r
36 Message-Id: <1343913757-23472-2-git-send-email-david@tethera.net>\r
37 X-Mailer: git-send-email 1.7.10.4\r
38 In-Reply-To: <1343913757-23472-1-git-send-email-david@tethera.net>\r
39 References: <m2ipd28td8.fsf@guru.guru-group.fi>\r
40         <1343913757-23472-1-git-send-email-david@tethera.net>\r
41 X-Spam_bar: -\r
42 Cc: David Bremner <bremner@debian.org>\r
43 X-BeenThere: notmuch@notmuchmail.org\r
44 X-Mailman-Version: 2.1.13\r
45 Precedence: list\r
46 List-Id: "Use and development of the notmuch mail system."\r
47         <notmuch.notmuchmail.org>\r
48 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
49         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
50 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
51 List-Post: <mailto:notmuch@notmuchmail.org>\r
52 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
53 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
54         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
55 X-List-Received-Date: Thu, 02 Aug 2012 13:23:00 -0000\r
56 \r
57 From: David Bremner <bremner@debian.org>\r
58 \r
59 These extra directories cause problems for building on Debian twice in\r
60 a row.\r
61 \r
62 In order to remove directories, we need to us "rm -rf" instead of "rm\r
63 -r". So now we should be extra careful what we add to the variable CLEAN.\r
64 ---\r
65  Makefile.local      |    2 +-\r
66  test/Makefile.local |    3 ++-\r
67  2 files changed, 3 insertions(+), 2 deletions(-)\r
68 \r
69 diff --git a/Makefile.local b/Makefile.local\r
70 index 296995d..6d6896a 100644\r
71 --- a/Makefile.local\r
72 +++ b/Makefile.local\r
73 @@ -265,7 +265,7 @@ quiet ?= $($(shell echo $1 | sed -e s'/ .*//'))\r
74  \r
75  .PHONY : clean\r
76  clean:\r
77 -       rm -f $(CLEAN); rm -rf .deps\r
78 +       rm -rf $(CLEAN); rm -rf .deps\r
79  \r
80  # We don't (yet) have any distributed files not in the upstream repository.\r
81  # So distclean is currently identical to clean.\r
82 diff --git a/test/Makefile.local b/test/Makefile.local\r
83 index 4a6a4b1..c7f1435 100644\r
84 --- a/test/Makefile.local\r
85 +++ b/test/Makefile.local\r
86 @@ -31,4 +31,5 @@ check: test\r
87  SRCS := $(SRCS) $(smtp_dummy_srcs)\r
88  CLEAN := $(CLEAN) $(dir)/smtp-dummy $(dir)/smtp-dummy.o \\r
89          $(dir)/symbol-test $(dir)/symbol-test.o \\r
90 -        $(dir)/arg-test $(dir)/arg-test.o\r
91 +        $(dir)/arg-test $(dir)/arg-test.o \\r
92 +        $(dir)/corpus.mail $(dir)/test-results $(dir)/tmp.*\r
93 -- \r
94 1.7.10.4\r
95 \r