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 183DB431FBC for ; Sun, 22 Nov 2009 04:44:49 -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 c5uz5hd-Tqr9 for ; Sun, 22 Nov 2009 04:44:48 -0800 (PST) Received: from mail-fx0-f214.google.com (mail-fx0-f214.google.com [209.85.220.214]) by olra.theworths.org (Postfix) with ESMTP id 5BECD431FAE for ; Sun, 22 Nov 2009 04:44:48 -0800 (PST) Received: by fxm6 with SMTP id 6so5036814fxm.0 for ; Sun, 22 Nov 2009 04:44:47 -0800 (PST) Received: by 10.103.84.32 with SMTP id m32mr1630932mul.33.1258893887497; Sun, 22 Nov 2009 04:44:47 -0800 (PST) Received: from x61s.janakj (r2c34.net.upc.cz [62.245.66.34]) by mx.google.com with ESMTPS id y37sm12690462mug.47.2009.11.22.04.44.46 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 22 Nov 2009 04:44:46 -0800 (PST) Received: by x61s.janakj (Postfix, from userid 1000) id 82A99440651; Sun, 22 Nov 2009 13:44:37 +0100 (CET) From: Jan Janak To: notmuch@notmuchmail.org Date: Sun, 22 Nov 2009 13:44:37 +0100 Message-Id: <1258893877-28436-1-git-send-email-jan@ryngle.com> X-Mailer: git-send-email 1.6.3.3 Subject: [notmuch] [PATCH] makefile: Tell echo to interpret escape sequences. 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: Sun, 22 Nov 2009 12:44:49 -0000 The initial message that informs the user about the possibility to use make V=1 contains a \n at the end, but echo wouldn't interpret that properly without the -e command line option. --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index ae8bff1..3553ff4 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.3.3