Re: [PATCH 9/9] add has: query prefix to search for specific properties
[notmuch-archives.git] / 68 / 8f283f75dc770f097e6c4d8ab9c45f62b9a94b
1 Return-Path: <bremner@tesseract.cs.unb.ca>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5  by arlo.cworth.org (Postfix) with ESMTP id B21106DE14D8\r
6  for <notmuch@notmuchmail.org>; Mon, 27 Jul 2015 12:00:31 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at cworth.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 0.166\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0.166 tagged_above=-999 required=5 tests=[AWL=0.156, \r
12  T_HEADER_FROM_DIFFERENT_DOMAINS=0.01] autolearn=disabled\r
13 Received: from arlo.cworth.org ([127.0.0.1])\r
14  by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
15  with ESMTP id 4G0stI5rLOvt for <notmuch@notmuchmail.org>;\r
16  Mon, 27 Jul 2015 12:00:29 -0700 (PDT)\r
17 X-Greylist: delayed 1002 seconds by postgrey-1.35 at arlo;\r
18  Mon, 27 Jul 2015 12:00:29 PDT\r
19 Received: from gitolite.debian.net (gitolite.debian.net [87.98.215.224])\r
20  by arlo.cworth.org (Postfix) with ESMTPS id 454496DE14D6\r
21  for <notmuch@notmuchmail.org>; Mon, 27 Jul 2015 12:00:29 -0700 (PDT)\r
22 Received: from remotemail by gitolite.debian.net with local (Exim 4.80)\r
23  (envelope-from <bremner@tesseract.cs.unb.ca>)\r
24  id 1ZJnMe-0001OC-Gw; Mon, 27 Jul 2015 18:43:04 +0000\r
25 Received: (nullmailer pid 24392 invoked by uid 1000); Mon, 27 Jul 2015\r
26  18:42:49 -0000\r
27 From: David Bremner <david@tethera.net>\r
28 To: notmuch@notmuchmail.org\r
29 Subject: [PATCH] build: add "set -e" to version script generation\r
30 Date: Mon, 27 Jul 2015 20:42:32 +0200\r
31 Message-Id: <1438022552-24342-1-git-send-email-david@tethera.net>\r
32 X-Mailer: git-send-email 2.1.4\r
33 X-BeenThere: notmuch@notmuchmail.org\r
34 X-Mailman-Version: 2.1.18\r
35 Precedence: list\r
36 List-Id: "Use and development of the notmuch mail system."\r
37  <notmuch.notmuchmail.org>\r
38 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
39  <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
40 List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
41 List-Post: <mailto:notmuch@notmuchmail.org>\r
42 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
43 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
44  <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
45 X-List-Received-Date: Mon, 27 Jul 2015 19:00:31 -0000\r
46 \r
47 It turns out that on certain systems like FreeBSD, c++filt is not\r
48 installed by default. It's basically OK if we fail the build in that\r
49 case, but what's really not OK is for the build to continue and\r
50 generate bad binaries.\r
51 ---\r
52  lib/gen-version-script.sh | 1 +\r
53  1 file changed, 1 insertion(+)\r
54 \r
55 diff --git a/lib/gen-version-script.sh b/lib/gen-version-script.sh\r
56 index 64a7374..aa1ca43 100644\r
57 --- a/lib/gen-version-script.sh\r
58 +++ b/lib/gen-version-script.sh\r
59 @@ -1,3 +1,4 @@\r
60 +set -e\r
61  \r
62  # we go through a bit of work to get the unmangled names of the\r
63  # typeinfo symbols because of\r
64 -- \r
65 2.1.4\r
66 \r