[PATCH 3/3] Makefile.local: use $(wildcard) to check existence of ${srcdir}/.git
authorTomi Ollila <tomi.ollila@iki.fi>
Wed, 25 May 2016 21:04:32 +0000 (00:04 +0300)
committerW. Trevor King <wking@tremily.us>
Sat, 20 Aug 2016 23:21:53 +0000 (16:21 -0700)
6a/bedeb004da67e700018a0f35723fb302b72138 [new file with mode: 0644]

diff --git a/6a/bedeb004da67e700018a0f35723fb302b72138 b/6a/bedeb004da67e700018a0f35723fb302b72138
new file mode 100644 (file)
index 0000000..197e464
--- /dev/null
@@ -0,0 +1,71 @@
+Return-Path: <too@guru-group.fi>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by arlo.cworth.org (Postfix) with ESMTP id C9FAD6DE0222\r
+ for <notmuch@notmuchmail.org>; Wed, 25 May 2016 14:04:49 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.258\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.258 tagged_above=-999 required=5 tests=[AWL=0.267, \r
+ HEADER_FROM_DIFFERENT_DOMAINS=0.001, T_RP_MATCHES_RCVD=-0.01]\r
+ autolearn=disabled\r
+Received: from arlo.cworth.org ([127.0.0.1])\r
+ by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id 3JO2wJfc0fbx for <notmuch@notmuchmail.org>;\r
+ Wed, 25 May 2016 14:04:41 -0700 (PDT)\r
+Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
+ by arlo.cworth.org (Postfix) with ESMTP id D4A216DE0217\r
+ for <notmuch@notmuchmail.org>; Wed, 25 May 2016 14:04:40 -0700 (PDT)\r
+Received: by guru.guru-group.fi (Postfix, from userid 501)\r
+ id 899D71000E0; Thu, 26 May 2016 00:04:35 +0300 (EEST)\r
+From: Tomi Ollila <tomi.ollila@iki.fi>\r
+To: notmuch@notmuchmail.org\r
+Cc: tomi.ollila@iki.fi\r
+Subject: [PATCH 3/3] Makefile.local: use $(wildcard) to check existence of\r
+ ${srcdir}/.git\r
+Date: Thu, 26 May 2016 00:04:32 +0300\r
+Message-Id: <1464210272-26281-3-git-send-email-tomi.ollila@iki.fi>\r
+X-Mailer: git-send-email 2.8.2\r
+In-Reply-To: <1464210272-26281-1-git-send-email-tomi.ollila@iki.fi>\r
+References: <1464210272-26281-1-git-send-email-tomi.ollila@iki.fi>\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.20\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <https://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: <https://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Wed, 25 May 2016 21:04:49 -0000\r
+\r
+With this GNU Make construct one shell invocation can be skipped\r
+and code looks shorter (narrower). This would now match to .git\r
+being other file type than regular file or directory (or symlink\r
+to those), but that is not a use case anyone should expect users\r
+to do.\r
+---\r
+ Makefile.local | 2 +-\r
+ 1 file changed, 1 insertion(+), 1 deletion(-)\r
+\r
+diff --git a/Makefile.local b/Makefile.local\r
+index ee3cf18f5757..045549b54442 100644\r
+--- a/Makefile.local\r
++++ b/Makefile.local\r
+@@ -10,7 +10,7 @@\r
+ # repository), we let git append identification of the actual commit.\r
+ PACKAGE=notmuch\r
\r
+-IS_GIT:=$(shell if [ -d ${srcdir}/.git -o -f ${srcdir}/.git ] ; then echo yes ; else echo no; fi)\r
++IS_GIT:=$(if $(wildcard ${srcdir}/.git),yes,no)\r
\r
+ ifeq ($(IS_GIT),yes)\r
+ DATE:=$(shell git --git-dir=${srcdir}/.git log --date=short -1 --pretty=format:%cd)\r
+-- \r
+2.8.2\r
+\r