Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / fe / 4bad916649491a38a4fb0b0de7d2442770ae17
1 Return-Path: <SRS0=5erb=HF=iptel.org=jan@srs.perfora.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 D80FF431FBC\r
6         for <notmuch@notmuchmail.org>; Tue, 17 Nov 2009 14:18:52 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 Received: from olra.theworths.org ([127.0.0.1])\r
9         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
10         with ESMTP id AsNMzDlVNaaJ for <notmuch@notmuchmail.org>;\r
11         Tue, 17 Nov 2009 14:18:52 -0800 (PST)\r
12 Received: from mout.perfora.net (mout.perfora.net [74.208.4.194])\r
13         by olra.theworths.org (Postfix) with ESMTP id 7BAF2431FAE\r
14         for <notmuch@notmuchmail.org>; Tue, 17 Nov 2009 14:18:52 -0800 (PST)\r
15 Received-SPF: pass (mxus1: domain of iptel.org designates 213.192.59.67 as\r
16         permitted sender) client-ip=213.192.59.67;\r
17         envelope-from=jan@iptel.org; helo=mail.iptel.org; \r
18 Received: from mail.iptel.org ([213.192.59.67])\r
19         by mx.perfora.net (node=mxus1) with ESMTP (Nemesis)\r
20         id 0Lsjs9-1OCDpK2DRx-012Hui for notmuch@notmuchmail.org;\r
21         Tue, 17 Nov 2009 17:18:51 -0500\r
22 Received: by mail.iptel.org (Postfix, from userid 103)\r
23         id 08FDF3707CE; Tue, 17 Nov 2009 23:18:49 +0100 (CET)\r
24 Received: from x61s.janakj (r2c34.net.upc.cz [62.245.66.34])\r
25         (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))\r
26         (Client did not present a certificate)\r
27         by mail.iptel.org (Postfix) with ESMTPSA id B0B2C370753\r
28         for <notmuch@notmuchmail.org>; Tue, 17 Nov 2009 23:18:48 +0100 (CET)\r
29 Received: by x61s.janakj (Postfix, from userid 1000)\r
30         id 8A1C5440655; Tue, 17 Nov 2009 23:18:47 +0100 (CET)\r
31 From: Jan Janak <jan@ryngle.com>\r
32 To: notmuch@notmuchmail.org\r
33 Date: Tue, 17 Nov 2009 23:18:47 +0100\r
34 Message-Id: <1258496327-12086-1-git-send-email-jan@ryngle.com>\r
35 X-Mailer: git-send-email 1.6.3.3\r
36 Subject: [notmuch] [PATCH] Older versions of install do not support -C.\r
37 X-BeenThere: notmuch@notmuchmail.org\r
38 X-Mailman-Version: 2.1.12\r
39 Precedence: list\r
40 List-Id: "Use and development of the notmuch mail system."\r
41         <notmuch.notmuchmail.org>\r
42 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
43         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
44 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
45 List-Post: <mailto:notmuch@notmuchmail.org>\r
46 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
47 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
48         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
49 X-List-Received-Date: Tue, 17 Nov 2009 22:18:53 -0000\r
50 \r
51 Do not use -C cmdline option of install, older versions, commonly found in\r
52 distributions like Debian, do not seem to support it. Running make install\r
53 on such systems (tested on Debian Lenny) fails.\r
54 \r
55 Signed-off-by: Jan Janak <jan@ryngle.com>\r
56 ---\r
57  Makefile.local |    8 ++++----\r
58  1 files changed, 4 insertions(+), 4 deletions(-)\r
59 \r
60 diff --git a/Makefile.local b/Makefile.local\r
61 index f824bed..f51f1d1 100644\r
62 --- a/Makefile.local\r
63 +++ b/Makefile.local\r
64 @@ -27,11 +27,11 @@ install: all notmuch.1.gz\r
65         for d in $(DESTDIR)$(prefix)/bin/ $(DESTDIR)$(prefix)/share/man/man1 \\r
66                 $(DESTDIR)/etc/bash_completion.d/ ; \\r
67         do \\r
68 -               install -C -d $$d ; \\r
69 +               install -d $$d ; \\r
70         done ;\r
71 -       install -C notmuch $(DESTDIR)$(prefix)/bin/\r
72 -       install -C -m0644 notmuch.1.gz $(DESTDIR)$(prefix)/share/man/man1/\r
73 -       install -C notmuch-completion.bash \\r
74 +       install notmuch $(DESTDIR)$(prefix)/bin/\r
75 +       install -m0644 notmuch.1.gz $(DESTDIR)$(prefix)/share/man/man1/\r
76 +       install notmuch-completion.bash \\r
77                 $(DESTDIR)/etc/bash_completion.d/notmuch\r
78  \r
79  SRCS  := $(SRCS) $(notmuch_client_srcs)\r
80 -- \r
81 1.6.3.3\r
82 \r