Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id DCED8431FBC for ; Thu, 26 Nov 2009 00:33:17 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DXos3c4zyoaV for ; Thu, 26 Nov 2009 00:33:17 -0800 (PST) Received: from sirius.lasnet.de (sirius.lasnet.de [78.47.116.19]) by olra.theworths.org (Postfix) with ESMTP id D0D27431FAE for ; Thu, 26 Nov 2009 00:33:16 -0800 (PST) Received: from w1686.wlan.rz.tu-bs.de ([134.169.206.162] helo=excalibur) by sirius.lasnet.de with esmtpsa (Cipher TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.63 #1) id 1NDZmq-0001vL-Ko by authid with cram_md5; Thu, 26 Nov 2009 09:33:15 +0100 Received: from stefan by excalibur with local (Exim 4.69) (envelope-from ) id 1NDZXd-0007jA-2N; Thu, 26 Nov 2009 09:17:29 +0100 From: Stefan Schmidt To: notmuch@notmuchmail.org Date: Thu, 26 Nov 2009 09:17:15 +0100 Message-Id: <1259223435-29656-1-git-send-email-stefan@datenfreihafen.org> X-Mailer: git-send-email 1.6.5.3 In-Reply-To: References: Subject: [notmuch] [PATCH] Makefile: Enable backslash escapes for echo. X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Nov 2009 08:33:18 -0000 This fixes a visual glitch during a silent compile. Before: Use "make V=1" to see the verbose compile lines.\n CC debugger.o CC gmime-filter-reply.o After: Use "make V=1" to see the verbose compile lines. CC debugger.o CC gmime-filter-reply.o Signed-off-by: Stefan Schmidt --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 2cd1b1b..2d19a6e 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ include Makefile.config # user how to enable verbose compiles. ifeq ($(V),) quiet_DOC := "Use \"$(MAKE) V=1\" to see the verbose compile lines.\n" -quiet = @echo $(quiet_DOC)$(eval quiet_DOC:=)" $1 $@"; $($1) +quiet = @echo -e $(quiet_DOC)$(eval quiet_DOC:=)" $1 $@"; $($1) endif # The user has explicitly enabled quiet compilation. ifeq ($(V),0) -- 1.6.5.3