Re: notmuch search --output=files error with AND NOT search terms
[notmuch-archives.git] / 45 / 9c86d0b2dff2b22e6aec3ff71f4dc408b3eff0
1 Return-Path: <stefan@datenfreihafen.org>\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 DCED8431FBC\r
6         for <notmuch@notmuchmail.org>; Thu, 26 Nov 2009 00:33:17 -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 DXos3c4zyoaV for <notmuch@notmuchmail.org>;\r
11         Thu, 26 Nov 2009 00:33:17 -0800 (PST)\r
12 Received: from sirius.lasnet.de (sirius.lasnet.de [78.47.116.19])\r
13         by olra.theworths.org (Postfix) with ESMTP id D0D27431FAE\r
14         for <notmuch@notmuchmail.org>; Thu, 26 Nov 2009 00:33:16 -0800 (PST)\r
15 Received: from w1686.wlan.rz.tu-bs.de ([134.169.206.162] helo=excalibur)\r
16         by sirius.lasnet.de with esmtpsa \r
17         (Cipher TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.63 #1)\r
18         id 1NDZmq-0001vL-Ko by authid <stefan@sostec.de> with cram_md5;\r
19         Thu, 26 Nov 2009 09:33:15 +0100\r
20 Received: from stefan by excalibur with local (Exim 4.69)\r
21         (envelope-from <stefan@excalibur.local>)\r
22         id 1NDZXd-0007jA-2N; Thu, 26 Nov 2009 09:17:29 +0100\r
23 From: Stefan Schmidt <stefan@datenfreihafen.org>\r
24 To: notmuch@notmuchmail.org\r
25 Date: Thu, 26 Nov 2009 09:17:15 +0100\r
26 Message-Id: <1259223435-29656-1-git-send-email-stefan@datenfreihafen.org>\r
27 X-Mailer: git-send-email 1.6.5.3\r
28 In-Reply-To: <yes>\r
29 References: <yes>\r
30 Subject: [notmuch] [PATCH] Makefile: Enable backslash escapes for echo.\r
31 X-BeenThere: notmuch@notmuchmail.org\r
32 X-Mailman-Version: 2.1.12\r
33 Precedence: list\r
34 List-Id: "Use and development of the notmuch mail system."\r
35         <notmuch.notmuchmail.org>\r
36 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
37         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
38 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
39 List-Post: <mailto:notmuch@notmuchmail.org>\r
40 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
41 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
42         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
43 X-List-Received-Date: Thu, 26 Nov 2009 08:33:18 -0000\r
44 \r
45 This fixes a visual glitch during a silent compile.\r
46 Before:\r
47 Use "make V=1" to see the verbose compile lines.\n  CC  debugger.o\r
48   CC    gmime-filter-reply.o\r
49 \r
50 After:\r
51 Use "make V=1" to see the verbose compile lines.\r
52   CC    debugger.o\r
53   CC    gmime-filter-reply.o\r
54 \r
55 Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>\r
56 ---\r
57  Makefile |    2 +-\r
58  1 files changed, 1 insertions(+), 1 deletions(-)\r
59 \r
60 diff --git a/Makefile b/Makefile\r
61 index 2cd1b1b..2d19a6e 100644\r
62 --- a/Makefile\r
63 +++ b/Makefile\r
64 @@ -41,7 +41,7 @@ include Makefile.config\r
65  # user how to enable verbose compiles.\r
66  ifeq ($(V),)\r
67  quiet_DOC := "Use \"$(MAKE) V=1\" to see the verbose compile lines.\n"\r
68 -quiet = @echo $(quiet_DOC)$(eval quiet_DOC:=)"  $1     $@"; $($1)\r
69 +quiet = @echo -e $(quiet_DOC)$(eval quiet_DOC:=)"  $1  $@"; $($1)\r
70  endif\r
71  # The user has explicitly enabled quiet compilation.\r
72  ifeq ($(V),0)\r
73 -- \r
74 1.6.5.3\r
75 \r