[PATCH] build: add "set -e" to version script generation
authorDavid Bremner <david@tethera.net>
Mon, 27 Jul 2015 18:42:32 +0000 (20:42 +0200)
committerW. Trevor King <wking@tremily.us>
Sat, 20 Aug 2016 21:49:12 +0000 (14:49 -0700)
68/8f283f75dc770f097e6c4d8ab9c45f62b9a94b [new file with mode: 0644]

diff --git a/68/8f283f75dc770f097e6c4d8ab9c45f62b9a94b b/68/8f283f75dc770f097e6c4d8ab9c45f62b9a94b
new file mode 100644 (file)
index 0000000..317ea3f
--- /dev/null
@@ -0,0 +1,66 @@
+Return-Path: <bremner@tesseract.cs.unb.ca>\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 B21106DE14D8\r
+ for <notmuch@notmuchmail.org>; Mon, 27 Jul 2015 12:00:31 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.166\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.166 tagged_above=-999 required=5 tests=[AWL=0.156, \r
+ T_HEADER_FROM_DIFFERENT_DOMAINS=0.01] 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 4G0stI5rLOvt for <notmuch@notmuchmail.org>;\r
+ Mon, 27 Jul 2015 12:00:29 -0700 (PDT)\r
+X-Greylist: delayed 1002 seconds by postgrey-1.35 at arlo;\r
+ Mon, 27 Jul 2015 12:00:29 PDT\r
+Received: from gitolite.debian.net (gitolite.debian.net [87.98.215.224])\r
+ by arlo.cworth.org (Postfix) with ESMTPS id 454496DE14D6\r
+ for <notmuch@notmuchmail.org>; Mon, 27 Jul 2015 12:00:29 -0700 (PDT)\r
+Received: from remotemail by gitolite.debian.net with local (Exim 4.80)\r
+ (envelope-from <bremner@tesseract.cs.unb.ca>)\r
+ id 1ZJnMe-0001OC-Gw; Mon, 27 Jul 2015 18:43:04 +0000\r
+Received: (nullmailer pid 24392 invoked by uid 1000); Mon, 27 Jul 2015\r
+ 18:42:49 -0000\r
+From: David Bremner <david@tethera.net>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH] build: add "set -e" to version script generation\r
+Date: Mon, 27 Jul 2015 20:42:32 +0200\r
+Message-Id: <1438022552-24342-1-git-send-email-david@tethera.net>\r
+X-Mailer: git-send-email 2.1.4\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.18\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: Mon, 27 Jul 2015 19:00:31 -0000\r
+\r
+It turns out that on certain systems like FreeBSD, c++filt is not\r
+installed by default. It's basically OK if we fail the build in that\r
+case, but what's really not OK is for the build to continue and\r
+generate bad binaries.\r
+---\r
+ lib/gen-version-script.sh | 1 +\r
+ 1 file changed, 1 insertion(+)\r
+\r
+diff --git a/lib/gen-version-script.sh b/lib/gen-version-script.sh\r
+index 64a7374..aa1ca43 100644\r
+--- a/lib/gen-version-script.sh\r
++++ b/lib/gen-version-script.sh\r
+@@ -1,3 +1,4 @@\r
++set -e\r
\r
+ # we go through a bit of work to get the unmangled names of the\r
+ # typeinfo symbols because of\r
+-- \r
+2.1.4\r
+\r