Re: [PATCH] doc: Allow rst2man.py as an alternative to rst2man
[notmuch-archives.git] / 98 / 9a07356fa7546403a2c37ed18d8de51f86df81
1 Return-Path: <gregor@sam.mediasupervision.de>\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 AC8104196F0\r
6         for <notmuch@notmuchmail.org>; Thu, 15 Apr 2010 02:51:49 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -0.001\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.001 tagged_above=-999 required=5\r
12         tests=[BAYES_40=-0.001] 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 Hy05n7zd41r5 for <notmuch@notmuchmail.org>;\r
16         Thu, 15 Apr 2010 02:51:48 -0700 (PDT)\r
17 Received: from sam.mediasupervision.de (sam.mediasupervision.de\r
18  [80.152.3.104])        by olra.theworths.org (Postfix) with ESMTP id 764BF431FC1       for\r
19  <notmuch@notmuchmail.org>; Thu, 15 Apr 2010 02:51:48 -0700 (PDT)\r
20 Received: from localhost (sam.mediasupervision.de [127.0.0.1])\r
21         by sam.mediasupervision.de (Postfix) with ESMTP id 56FED485C67\r
22         for <notmuch@notmuchmail.org>; Thu, 15 Apr 2010 11:51:47 +0200 (CEST)\r
23 X-Virus-Scanned: Debian amavisd-new at sam.mediasupervision.de\r
24 Received: from sam.mediasupervision.de ([127.0.0.1])\r
25         by localhost (sam.mediasupervision.de [127.0.0.1]) (amavisd-new,\r
26         port 10024) with ESMTP id r7Wg8xvu-YnR for <notmuch@notmuchmail.org>;\r
27         Thu, 15 Apr 2010 11:51:47 +0200 (CEST)\r
28 Received: by sam.mediasupervision.de (Postfix, from userid 1000)\r
29         id 3E94C485DE6; Thu, 15 Apr 2010 11:51:47 +0200 (CEST)\r
30 Content-Type: text/plain; charset=UTF-8\r
31 Subject: [PATCH] configure: Fix syntax error (spaces in assignment).\r
32 From: Gregor Hoffleit <gregor@hoffleit.de>\r
33 To: notmuch <notmuch@notmuchmail.org>\r
34 Date: Thu, 15 Apr 2010 11:51:47 +0200\r
35 Message-Id: <1271325019-sup-2799@sam.mediasupervision.de>\r
36 User-Agent: Sup/git\r
37 Content-Transfer-Encoding: 8bit\r
38 X-BeenThere: notmuch@notmuchmail.org\r
39 X-Mailman-Version: 2.1.13\r
40 Precedence: list\r
41 List-Id: "Use and development of the notmuch mail system."\r
42         <notmuch.notmuchmail.org>\r
43 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
44         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
45 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
46 List-Post: <mailto:notmuch@notmuchmail.org>\r
47 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
48 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
49         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
50 X-List-Received-Date: Thu, 15 Apr 2010 09:51:49 -0000\r
51 \r
52 Before and after the assignment operator, no spaces are allowed.\r
53 I don't know if there are any /bin/sh which allow spaces, but at least\r
54 in bash, csh and zsh, the former code was no valid assigment.\r
55 ---\r
56  configure |    4 ++--\r
57  1 files changed, 2 insertions(+), 2 deletions(-)\r
58 \r
59 diff --git a/configure b/configure\r
60 index eebe075..7f5ca7d 100755\r
61 --- a/configure\r
62 +++ b/configure\r
63 @@ -238,11 +238,11 @@ printf "Checking for Mac OS X (for shared library)... "\r
64  if [ `uname` = "Darwin" ] ; then\r
65      printf "Yes.\n"\r
66      mac_os_x=1\r
67 -    linker_resolves_library_dependencies = 0\r
68 +    linker_resolves_library_dependencies=0\r
69  else\r
70      printf "No.\n"\r
71      mac_os_x=0\r
72 -    linker_resolves_library_dependencies = 1\r
73 +    linker_resolves_library_dependencies=1\r
74  fi\r
75  \r
76  if [ $errors -gt 0 ]; then\r
77 -- \r
78 1.7.0.4\r