Re: notmuch and "mute" -- useful to anyone?
[notmuch-archives.git] / d4 / 601a9756d208b225603cace9ab0926b0c6993e
1 Return-Path: <too@guru-group.fi>\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 C8FC06DE0924\r
6  for <notmuch@notmuchmail.org>; Fri, 25 Sep 2015 14:45:40 -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.186\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0.186 tagged_above=-999 required=5 tests=[AWL=0.726, \r
12  RP_MATCHES_RCVD=-0.55, T_HEADER_FROM_DIFFERENT_DOMAINS=0.01]\r
13  autolearn=disabled\r
14 Received: from arlo.cworth.org ([127.0.0.1])\r
15  by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
16  with ESMTP id QKihG26sjtFU for <notmuch@notmuchmail.org>;\r
17  Fri, 25 Sep 2015 14:45:38 -0700 (PDT)\r
18 Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
19  by arlo.cworth.org (Postfix) with ESMTP id 7CD016DE02D2\r
20  for <notmuch@notmuchmail.org>; Fri, 25 Sep 2015 14:45:37 -0700 (PDT)\r
21 Received: by guru.guru-group.fi (Postfix, from userid 501)\r
22  id 3075F1000E5; Sat, 26 Sep 2015 00:45:41 +0300 (EEST)\r
23 From: Tomi Ollila <tomi.ollila@iki.fi>\r
24 To: notmuch@notmuchmail.org\r
25 Subject: [PATCH] emacs/Makefile.local: notmuch-lib.elc depend on\r
26  notmuch-version.elc\r
27 Date: Sat, 26 Sep 2015 00:45:39 +0300\r
28 Message-Id: <1443217539-21951-1-git-send-email-tomi.ollila@iki.fi>\r
29 X-Mailer: git-send-email 2.0.0\r
30 Cc: tomi.ollila@iki.fi\r
31 X-BeenThere: notmuch@notmuchmail.org\r
32 X-Mailman-Version: 2.1.18\r
33 Precedence: list\r
34 List-Id: "Use and development of the notmuch mail system."\r
35  <notmuch.notmuchmail.org>\r
36 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
37  <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
38 List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
39 List-Post: <mailto:notmuch@notmuchmail.org>\r
40 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
41 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
42  <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
43 X-List-Received-Date: Fri, 25 Sep 2015 21:45:40 -0000\r
44 \r
45 emacs/make-depend.el will compute all other related dependencies\r
46 except this one:\r
47 \r
48 notmuch-version is not top-level `require' expression in\r
49 notmuc-lib.el[c] but conditional based on the existence of\r
50 notmuch-version.el[c].\r
51 \r
52 emacs/make-depend.el does not know now notmuch-version.el[c] becomes\r
53 into existence but emacs/Makefile.local does know.\r
54 ---\r
55  emacs/Makefile.local | 4 ++++\r
56  1 file changed, 4 insertions(+)\r
57 \r
58 diff --git a/emacs/Makefile.local b/emacs/Makefile.local\r
59 index 1109cfa6b090..19e184edcbc7 100644\r
60 --- a/emacs/Makefile.local\r
61 +++ b/emacs/Makefile.local\r
62 @@ -52,6 +52,10 @@ $(dir)/.eldeps: $(dir)/Makefile.local $(dir)/make-deps.el $(emacs_sources)\r
63  $(dir)/.eldeps.x: $(dir)/.eldeps\r
64         @cmp -s $^ $@ || cp $^ $@\r
65  -include $(dir)/.eldeps.x\r
66 +\r
67 +# Add the one dependency make-deps.el does not have visibility to.\r
68 +$(dir)/notmuch-lib.elc: $(dir)/notmuch-version.elc\r
69 +\r
70  endif\r
71  CLEAN+=$(dir)/.eldeps $(dir)/.eldeps.tmp $(dir)/.eldeps.x\r
72  \r
73 -- \r
74 2.0.0\r
75 \r