Re: [PATCH] emacs: call notmuch-show instead notmuch-search in buttonised id: links
[notmuch-archives.git] / 89 / d9468fede3e937b5519a850f7cea4a2cb102c2
1 Return-Path: <greenrd@greenrd.org>\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 olra.theworths.org (Postfix) with ESMTP id 17743431FD0\r
6         for <notmuch@notmuchmail.org>; Sun,  3 Jul 2011 02:18:39 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 1.275\r
10 X-Spam-Level: *\r
11 X-Spam-Status: No, score=1.275 tagged_above=-999 required=5\r
12         tests=[RDNS_NONE=1.274, UNPARSEABLE_RELAY=0.001] autolearn=disabled\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id nliZqjd418fs for <notmuch@notmuchmail.org>;\r
16         Sun,  3 Jul 2011 02:18:38 -0700 (PDT)\r
17 Received: from mail.dnsexit.com (unknown [67.214.175.90])\r
18         (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id 587A1431FB6\r
21         for <notmuch@notmuchmail.org>; Sun,  3 Jul 2011 02:18:38 -0700 (PDT)\r
22 Received: from greenrd.plus.com (greenrd.plus.com [212.159.116.150])\r
23         (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))\r
24         (No client certificate requested)\r
25         by mail.dnsexit.com (Postfix) with ESMTP id 30C8EB7D3EB\r
26         for <notmuch@notmuchmail.org>; Sun,  3 Jul 2011 05:18:00 -0400 (EDT)\r
27 Received: from greenrd (uid 1001) (envelope-from greenrd@greenrd.org)\r
28         id 10a089c2d by greenrd.plus.com (DragonFly Mail Agent)\r
29         Sun, 03 Jul 2011 10:18:29 +0100\r
30 From: Robin Green <greenrd@greenrd.org>\r
31 To: notmuch@notmuchmail.org\r
32 Subject: [PATCH] Use POSIX sed invocation\r
33 Date: Sun,  3 Jul 2011 10:18:17 +0100\r
34 Message-Id: <1309684697-3289-1-git-send-email-greenrd@greenrd.org>\r
35 X-Mailer: git-send-email 1.7.4.1\r
36 X-BeenThere: notmuch@notmuchmail.org\r
37 X-Mailman-Version: 2.1.13\r
38 Precedence: list\r
39 List-Id: "Use and development of the notmuch mail system."\r
40         <notmuch.notmuchmail.org>\r
41 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
42         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
43 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
44 List-Post: <mailto:notmuch@notmuchmail.org>\r
45 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
46 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
47         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
48 X-List-Received-Date: Sun, 03 Jul 2011 09:18:39 -0000\r
49 \r
50 Fixes broken build on DragonFly BSD\r
51 \r
52 Signed-off-by: Robin Green <greenrd@greenrd.org>\r
53 ---\r
54  lib/Makefile.local |    2 +-\r
55  1 files changed, 1 insertions(+), 1 deletions(-)\r
56 \r
57 diff --git a/lib/Makefile.local b/lib/Makefile.local\r
58 index fe42920..88d8deb 100644\r
59 --- a/lib/Makefile.local\r
60 +++ b/lib/Makefile.local\r
61 @@ -76,7 +76,7 @@ $(dir)/$(LIBNAME): $(libnotmuch_modules) notmuch.sym\r
62  \r
63  notmuch.sym: lib/notmuch.h\r
64         printf "{\nglobal:\n" > notmuch.sym\r
65 -       sed  -n 's/^\s*\(notmuch_[a-z_]*\)\s*(.*/\t\1;/p' $< >> notmuch.sym\r
66 +       sed  -n 's/^[[:space:]]*\(notmuch_[a-z_]*\)[[:space:]]*(.*/'"`printf "\t"`"'\1;/p' $< >> notmuch.sym\r
67         printf "local: *;\n};\n" >> notmuch.sym\r
68  \r
69  $(dir)/$(SONAME): $(dir)/$(LIBNAME)\r
70 -- \r
71 1.7.4.1\r
72 \r