1Return-Path: <ingmar@exherbo.org>
2X-Original-To: notmuch@notmuchmail.org
3Delivered-To: notmuch@notmuchmail.org
4Received: from localhost (localhost [127.0.0.1])
5	by olra.theworths.org (Postfix) with ESMTP id BAA52431FBC
6	for <notmuch@notmuchmail.org>; Thu, 26 Nov 2009 00:43:44 -0800 (PST)
7X-Virus-Scanned: Debian amavisd-new at olra.theworths.org
8Received: from olra.theworths.org ([127.0.0.1])
9	by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)
10	with ESMTP id 0U+OLchDCS5T for <notmuch@notmuchmail.org>;
11	Thu, 26 Nov 2009 00:43:44 -0800 (PST)
12Received: from bach.exherbo.org (bach.exherbo.org [78.47.197.147])
13	by olra.theworths.org (Postfix) with ESMTP id 05223431FAE
14	for <notmuch@notmuchmail.org>; Thu, 26 Nov 2009 00:43:43 -0800 (PST)
15Received: from [83.101.72.69] (helo=localhost)
16	by bach.exherbo.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69)
17	(envelope-from <ingmar@exherbo.org>) id 1NDZx1-0000VV-3u
18	for notmuch@notmuchmail.org; Thu, 26 Nov 2009 08:43:43 +0000
19Content-Type: text/plain; charset=utf8
20From: Ingmar Vanhassel <ingmar@exherbo.org>
21To: notmuch <notmuch@notmuchmail.org>
22In-reply-to: <1259223435-29656-1-git-send-email-stefan@datenfreihafen.org>
23References: <yes> <1259223435-29656-1-git-send-email-stefan@datenfreihafen.org>
24Date: Thu, 26 Nov 2009 09:43:42 +0100
25Message-Id: <1259224970-sup-5259@cannonball>
26User-Agent: Sup/git
27Content-Transfer-Encoding: 8bit
28Subject: Re: [notmuch] [PATCH] Makefile: Enable backslash escapes for echo.
29X-BeenThere: notmuch@notmuchmail.org
30X-Mailman-Version: 2.1.12
31Precedence: list
32List-Id: "Use and development of the notmuch mail system."
33	<notmuch.notmuchmail.org>
34List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,
35	<mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>
36List-Archive: <http://notmuchmail.org/pipermail/notmuch>
37List-Post: <mailto:notmuch@notmuchmail.org>
38List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>
39List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,
40	<mailto:notmuch-request@notmuchmail.org?subject=subscribe>
41X-List-Received-Date: Thu, 26 Nov 2009 08:43:44 -0000
42
43Excerpts from Stefan Schmidt's message of Thu Nov 26 09:17:15 +0100 2009:
44> This fixes a visual glitch during a silent compile.
45> Before:
46> Use "make V=1" to see the verbose compile lines.\n  CC  debugger.o
47>   CC    gmime-filter-reply.o
48>
49> After:
50> Use "make V=1" to see the verbose compile lines.
51>   CC    debugger.o
52>   CC    gmime-filter-reply.o
53>
54> Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
55
56Looks right, works here with bash, dash & zsh, so:
57
58Reviewed-by: Ingmar Vanhassel <ingmar@exherbo.org>
59
60Thanks!
61
62> ---
63>  Makefile |    2 +-
64>  1 files changed, 1 insertions(+), 1 deletions(-)
65>
66> diff --git a/Makefile b/Makefile
67> index 2cd1b1b..2d19a6e 100644
68> --- a/Makefile
69> +++ b/Makefile
70> @@ -41,7 +41,7 @@ include Makefile.config
71>  # user how to enable verbose compiles.
72>  ifeq ($(V),)
73>  quiet_DOC := "Use \"$(MAKE) V=1\" to see the verbose compile lines.\n"
74> -quiet = @echo $(quiet_DOC)$(eval quiet_DOC:=)"  $1    $@"; $($1)
75> +quiet = @echo -e $(quiet_DOC)$(eval quiet_DOC:=)"  $1    $@"; $($1)
76>  endif
77>  # The user has explicitly enabled quiet compilation.
78>  ifeq ($(V),0)
79--
80Exherbo KDE, X.org maintainer
81
82