Re: [PATCH v2 05/10] install: check for non-SysV version (Solaris support)
authorBlake Jones <blakej@foo.net>
Thu, 8 Nov 2012 06:22:26 +0000 (22:22 +1600)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:50:26 +0000 (09:50 -0800)
da/3017f610e393fc6299dedb7a02dec562f67276 [new file with mode: 0644]

diff --git a/da/3017f610e393fc6299dedb7a02dec562f67276 b/da/3017f610e393fc6299dedb7a02dec562f67276
new file mode 100644 (file)
index 0000000..ec5173b
--- /dev/null
@@ -0,0 +1,84 @@
+Return-Path: <blakej@foo.net>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id 718EC431FB6\r
+       for <notmuch@notmuchmail.org>; Wed,  7 Nov 2012 22:22:36 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
+       autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id QO4YHXG8T2ar for <notmuch@notmuchmail.org>;\r
+       Wed,  7 Nov 2012 22:22:36 -0800 (PST)\r
+Received: from foo.net (70-36-235-136.dsl.static.sonic.net [70.36.235.136])\r
+       (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))\r
+       (No client certificate requested)\r
+       by olra.theworths.org (Postfix) with ESMTPS id C6256431FAE\r
+       for <notmuch@notmuchmail.org>; Wed,  7 Nov 2012 22:22:35 -0800 (PST)\r
+Received: from foo.net (localhost [127.0.0.1])\r
+       by foo.net (8.14.5+Sun/8.14.5) with ESMTP id qA86MQYo023237;\r
+       Wed, 7 Nov 2012 22:22:26 -0800 (PST)\r
+To: Tomi Ollila <tomi.ollila@iki.fi>\r
+Subject: Re: [PATCH v2 05/10] install: check for non-SysV version (Solaris\r
+       support) \r
+In-Reply-To: Your message of "Tue, 06 Nov 2012 18:51:43 +0200."\r
+       <m2vcdiznc0.fsf@guru.guru-group.fi> \r
+Date: Wed, 07 Nov 2012 22:22:26 -0800\r
+Message-ID: <23236.1352355746@foo.net>\r
+From: Blake Jones <blakej@foo.net>\r
+X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2\r
+       (foo.net [127.0.0.1]); Wed, 07 Nov 2012 22:22:27 -0800 (PST)\r
+Cc: notmuch@notmuchmail.org\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\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: Thu, 08 Nov 2012 06:22:36 -0000\r
+\r
+> > diff --git a/vim/Makefile b/vim/Makefile\r
+> > index f17bebf..7ceba7a 100644\r
+> > --- a/vim/Makefile\r
+> > +++ b/vim/Makefile\r
+> > @@ -5,8 +5,6 @@ files = plugin/notmuch.vim \\r
+> >  prefix = $(HOME)/.vim\r
+> >  destdir = $(prefix)/plugin\r
+> >  \r
+> > -INSTALL = install -D -m644\r
+> > -\r
+> >  all: help\r
+> >  \r
+> >  help:\r
+> > @@ -17,7 +15,7 @@ help:\r
+> >    @echo "    make symlink     - create symlinks in ~/.vim (useful for dev\r
+> elopment)"\r
+> >  \r
+> >  install:\r
+> > -  @for x in $(files); do $(INSTALL) $(CURDIR)/$$x $(prefix)/$$x; done\r
+> > +  @for x in $(files); do $(INSTALL) -D -m644 $(CURDIR)/$$x $(prefix)/$$x;\r
+>  done\r
+> >  \r
+> > -link symlink: INSTALL = ln -fs\r
+> >  link symlink: install\r
+> > +  @for x in $(files); do ln -fs $(CURDIR)/$$x $(prefix)/$$x; done\r
+> > -- \r
+> \r
+> Here you'd need to remove the 'install' dependency as it would first\r
+> do it and then overwriting the results with dependency.\r
+\r
+Good catch, thanks; that's what I'll do.  I also noticed a couple other\r
+things in this file -- I need to "include ../Makefile.config" to get the\r
+definition of $INSTALL, and $destdir isn't used in that Makefile.\r
+\r
+Blake\r