Re: [WIP] tests: add test for case insensitive Content-Disposition
[notmuch-archives.git] / da / 3017f610e393fc6299dedb7a02dec562f67276
1 Return-Path: <blakej@foo.net>\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 718EC431FB6\r
6         for <notmuch@notmuchmail.org>; Wed,  7 Nov 2012 22:22:36 -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: 0\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
12         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 QO4YHXG8T2ar for <notmuch@notmuchmail.org>;\r
16         Wed,  7 Nov 2012 22:22:36 -0800 (PST)\r
17 Received: from foo.net (70-36-235-136.dsl.static.sonic.net [70.36.235.136])\r
18         (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id C6256431FAE\r
21         for <notmuch@notmuchmail.org>; Wed,  7 Nov 2012 22:22:35 -0800 (PST)\r
22 Received: from foo.net (localhost [127.0.0.1])\r
23         by foo.net (8.14.5+Sun/8.14.5) with ESMTP id qA86MQYo023237;\r
24         Wed, 7 Nov 2012 22:22:26 -0800 (PST)\r
25 To: Tomi Ollila <tomi.ollila@iki.fi>\r
26 Subject: Re: [PATCH v2 05/10] install: check for non-SysV version (Solaris\r
27         support) \r
28 In-Reply-To: Your message of "Tue, 06 Nov 2012 18:51:43 +0200."\r
29         <m2vcdiznc0.fsf@guru.guru-group.fi> \r
30 Date: Wed, 07 Nov 2012 22:22:26 -0800\r
31 Message-ID: <23236.1352355746@foo.net>\r
32 From: Blake Jones <blakej@foo.net>\r
33 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2\r
34         (foo.net [127.0.0.1]); Wed, 07 Nov 2012 22:22:27 -0800 (PST)\r
35 Cc: notmuch@notmuchmail.org\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: Thu, 08 Nov 2012 06:22:36 -0000\r
49 \r
50 > > diff --git a/vim/Makefile b/vim/Makefile\r
51 > > index f17bebf..7ceba7a 100644\r
52 > > --- a/vim/Makefile\r
53 > > +++ b/vim/Makefile\r
54 > > @@ -5,8 +5,6 @@ files = plugin/notmuch.vim \\r
55 > >  prefix = $(HOME)/.vim\r
56 > >  destdir = $(prefix)/plugin\r
57 > >  \r
58 > > -INSTALL = install -D -m644\r
59 > > -\r
60 > >  all: help\r
61 > >  \r
62 > >  help:\r
63 > > @@ -17,7 +15,7 @@ help:\r
64 > >     @echo "    make symlink     - create symlinks in ~/.vim (useful for dev\r
65 > elopment)"\r
66 > >  \r
67 > >  install:\r
68 > > -   @for x in $(files); do $(INSTALL) $(CURDIR)/$$x $(prefix)/$$x; done\r
69 > > +   @for x in $(files); do $(INSTALL) -D -m644 $(CURDIR)/$$x $(prefix)/$$x;\r
70 >  done\r
71 > >  \r
72 > > -link symlink: INSTALL = ln -fs\r
73 > >  link symlink: install\r
74 > > +   @for x in $(files); do ln -fs $(CURDIR)/$$x $(prefix)/$$x; done\r
75 > > -- \r
76\r
77 > Here you'd need to remove the 'install' dependency as it would first\r
78 > do it and then overwriting the results with dependency.\r
79 \r
80 Good catch, thanks; that's what I'll do.  I also noticed a couple other\r
81 things in this file -- I need to "include ../Makefile.config" to get the\r
82 definition of $INSTALL, and $destdir isn't used in that Makefile.\r
83 \r
84 Blake\r