[notmuch] [PATCH] makefile: Tell echo to interpret escape sequences.
authorJan Janak <jan@ryngle.com>
Sun, 22 Nov 2009 12:44:37 +0000 (13:44 +0100)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:35:39 +0000 (09:35 -0800)
4c/ad770e191d995718d2c49906a7cb19bea084c5 [new file with mode: 0644]

diff --git a/4c/ad770e191d995718d2c49906a7cb19bea084c5 b/4c/ad770e191d995718d2c49906a7cb19bea084c5
new file mode 100644 (file)
index 0000000..45f363c
--- /dev/null
@@ -0,0 +1,68 @@
+Return-Path: <jan@ryngle.com>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id 183DB431FBC\r
+       for <notmuch@notmuchmail.org>; Sun, 22 Nov 2009 04:44:49 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id c5uz5hd-Tqr9 for <notmuch@notmuchmail.org>;\r
+       Sun, 22 Nov 2009 04:44:48 -0800 (PST)\r
+Received: from mail-fx0-f214.google.com (mail-fx0-f214.google.com\r
+       [209.85.220.214])\r
+       by olra.theworths.org (Postfix) with ESMTP id 5BECD431FAE\r
+       for <notmuch@notmuchmail.org>; Sun, 22 Nov 2009 04:44:48 -0800 (PST)\r
+Received: by fxm6 with SMTP id 6so5036814fxm.0\r
+       for <notmuch@notmuchmail.org>; Sun, 22 Nov 2009 04:44:47 -0800 (PST)\r
+Received: by 10.103.84.32 with SMTP id m32mr1630932mul.33.1258893887497;\r
+       Sun, 22 Nov 2009 04:44:47 -0800 (PST)\r
+Received: from x61s.janakj (r2c34.net.upc.cz [62.245.66.34])\r
+       by mx.google.com with ESMTPS id y37sm12690462mug.47.2009.11.22.04.44.46\r
+       (version=TLSv1/SSLv3 cipher=RC4-MD5);\r
+       Sun, 22 Nov 2009 04:44:46 -0800 (PST)\r
+Received: by x61s.janakj (Postfix, from userid 1000)\r
+       id 82A99440651; Sun, 22 Nov 2009 13:44:37 +0100 (CET)\r
+From: Jan Janak <jan@ryngle.com>\r
+To: notmuch@notmuchmail.org\r
+Date: Sun, 22 Nov 2009 13:44:37 +0100\r
+Message-Id: <1258893877-28436-1-git-send-email-jan@ryngle.com>\r
+X-Mailer: git-send-email 1.6.3.3\r
+Subject: [notmuch] [PATCH] makefile: Tell echo to interpret escape sequences.\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.12\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sun, 22 Nov 2009 12:44:49 -0000\r
+\r
+The initial message that informs the user about the possibility to use\r
+make V=1 contains a \n at the end, but echo wouldn't interpret that\r
+properly without the -e command line option.\r
+---\r
+ Makefile |    2 +-\r
+ 1 files changed, 1 insertions(+), 1 deletions(-)\r
+\r
+diff --git a/Makefile b/Makefile\r
+index ae8bff1..3553ff4 100644\r
+--- a/Makefile\r
++++ b/Makefile\r
+@@ -41,7 +41,7 @@ include Makefile.config\r
+ # user how to enable verbose compiles.\r
+ ifeq ($(V),)\r
+ quiet_DOC := "Use \"$(MAKE) V=1\" to see the verbose compile lines.\n"\r
+-quiet = @echo $(quiet_DOC)$(eval quiet_DOC:=)"  $1    $@"; $($1)\r
++quiet = @echo -e $(quiet_DOC)$(eval quiet_DOC:=)"  $1 $@"; $($1)\r
+ endif\r
+ # The user has explicitly enabled quiet compilation.\r
+ ifeq ($(V),0)\r
+-- \r
+1.6.3.3\r
+\r