Re: Kudos! Also: +1 PGP!
[notmuch-archives.git] / b3 / 2d946a6a3dd1081b4ccde0977bfc0d8fa7a185
1 Return-Path: <ingmar@exherbo.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 A86D64048DC\r
6         for <notmuch@notmuchmail.org>; Fri, 12 Mar 2010 05:47:45 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -1.595\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-1.595 tagged_above=-999 required=5 tests=[AWL=1.004,\r
12         BAYES_00=-2.599] autolearn=ham\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 Ckn76kB4BbIy for <notmuch@notmuchmail.org>;\r
16         Fri, 12 Mar 2010 05:47:44 -0800 (PST)\r
17 Received: from bach.exherbo.org (bach.exherbo.org [78.47.197.147])\r
18         by olra.theworths.org (Postfix) with ESMTP id E3FA04048D4\r
19         for <notmuch@notmuchmail.org>; Fri, 12 Mar 2010 05:47:43 -0800 (PST)\r
20 Received: from [83.101.72.69] (helo=localhost)\r
21         by bach.exherbo.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69)\r
22         (envelope-from <ingmar@exherbo.org>)\r
23         id 1Nq5DK-0005WK-UQ; Fri, 12 Mar 2010 13:47:43 +0000\r
24 From: Ingmar Vanhassel <ingmar@exherbo.org>\r
25 To: notmuch@notmuchmail.org\r
26 Date: Fri, 12 Mar 2010 14:47:35 +0100\r
27 Message-Id: <1268401656-12827-3-git-send-email-ingmar@exherbo.org>\r
28 X-Mailer: git-send-email 1.7.0.2\r
29 In-Reply-To: <1268347072-2050-1-git-send-email-bgamari.foss@gmail.com>\r
30 References: <1268347072-2050-1-git-send-email-bgamari.foss@gmail.com>\r
31 Cc: Saleem Abdulrasool <compnerd@compnerd.org>\r
32 Subject: [notmuch] [PATCH 2/3] Fix target dependencies for multiple jobs\r
33 X-BeenThere: notmuch@notmuchmail.org\r
34 X-Mailman-Version: 2.1.13\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: Fri, 12 Mar 2010 13:47:46 -0000\r
46 \r
47 From: Saleem Abdulrasool <compnerd@compnerd.org>\r
48 \r
49 Signed-off-by: Ingmar Vanhassel <ingmar@exherbo.org>\r
50 ---\r
51  lib/Makefile.local |    9 ++++++---\r
52  1 files changed, 6 insertions(+), 3 deletions(-)\r
53 \r
54 diff --git a/lib/Makefile.local b/lib/Makefile.local\r
55 index f848946..7105070 100644\r
56 --- a/lib/Makefile.local\r
57 +++ b/lib/Makefile.local\r
58 @@ -18,9 +18,12 @@ libnotmuch_cxx_srcs =                \\r
59         $(dir)/thread.cc\r
60  \r
61  libnotmuch_modules = $(libnotmuch_c_srcs:.c=.o) $(libnotmuch_cxx_srcs:.cc=.o)\r
62 -$(dir)/libnotmuch.so : $(libnotmuch_modules)\r
63 +\r
64 +$(dir)/$(SONAME) : $(libnotmuch_modules)\r
65         $(call quiet,CXX,$(LDFLAGS)) $^ $(FINAL_LDFLAGS) -shared -Wl,-soname=$(SONAME) -o $@\r
66 -       ln -sf $(SONAME) $@\r
67 +\r
68 +$(dir)/libnotmuch.so: $(dir)/$(SONAME)\r
69 +       ln -fs $(SONAME) $@\r
70  \r
71  SRCS  := $(SRCS) $(libnotmuch_c_srcs) $(libnotmuch_cxx_srcs)\r
72 -CLEAN := $(CLEAN) $(libnotmuch_modules) $(dir)/libnotmuch.so *.so\r
73 +CLEAN := $(CLEAN) $(libnotmuch_modules) $(dir)/$(SONAME) $(dir)/libnotmuch.so *.so\r
74 -- \r
75 1.7.0.2\r
76 \r