summaryrefslogtreecommitdiff
path: root/a2/b72c2b106bdcf6821d3343fafd23573484cd7d
blob: 9597fc1d9535bec372c26fd9730858267bb331eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
Received: from sog-mx-3.v43.ch3.sourceforge.com ([172.29.43.193]
	helo=mx.sourceforge.net)
	by sfs-ml-2.v29.ch3.sourceforge.com with esmtp (Exim 4.76)
	(envelope-from <fg@numlog.fr>) id 1XlE0g-0000PV-70
	for bitcoin-development@lists.sourceforge.net;
	Mon, 03 Nov 2014 09:33:14 +0000
Received-SPF: pass (sog-mx-3.v43.ch3.sourceforge.com: domain of numlog.fr
	designates 5.56.47.166 as permitted sender)
	client-ip=5.56.47.166; envelope-from=fg@numlog.fr;
	helo=mail1.numlog.fr; 
Received: from mail.numlog.fr ([5.56.47.166] helo=mail1.numlog.fr)
	by sog-mx-3.v43.ch3.sourceforge.com with smtp (Exim 4.76)
	id 1XlE0c-0003Fs-LX for bitcoin-development@lists.sourceforge.net;
	Mon, 03 Nov 2014 09:33:14 +0000
Received: from localhost (localhost [127.0.0.1])
	by mail1.numlog.fr (Postfix) with ESMTP id 8FEBF1E08D2
	for <bitcoin-development@lists.sourceforge.net>;
	Mon,  3 Nov 2014 10:16:29 +0100 (CET)
X-Virus-Scanned: amavisd-new at numlog.fr
Received: from mail1.numlog.fr ([127.0.0.1])
	by localhost (mail.numlog.fr [127.0.0.1]) (amavisd-new, port 10024)
	with SMTP id dxBKBEQDb172
	for <bitcoin-development@lists.sourceforge.net>;
	Mon,  3 Nov 2014 10:16:24 +0100 (CET)
Received: from num8.numlog.priv (unknown [192.168.13.8])
	by mail1.numlog.fr (Postfix) with ESMTP id B62D51E0113
	for <bitcoin-development@lists.sourceforge.net>;
	Mon,  3 Nov 2014 10:16:23 +0100 (CET)
Received: from [192.168.13.109] (pcfg.numlog.priv [192.168.13.109])
	by num8.numlog.priv (Postfix) with ESMTP id AF8BA6037940
	for <bitcoin-development@lists.sourceforge.net>;
	Mon,  3 Nov 2014 10:16:23 +0100 (CET)
Message-ID: <545747E7.6030403@numlog.fr>
Date: Mon, 03 Nov 2014 10:16:23 +0100
From: Francis GASCHET <fg@numlog.fr>
User-Agent: Mozilla/5.0 (X11; Linux i686;
	rv:24.0) Gecko/20100101 Thunderbird/24.4.0
MIME-Version: 1.0
To: bitcoin-development@lists.sourceforge.net
Content-Type: text/plain; charset=ISO-8859-15; format=flowed
Content-Transfer-Encoding: 7bit
X-Spam-Score: -2.1 (--)
X-Spam-Report: Spam Filtering performed by mx.sourceforge.net.
	See http://spamassassin.org/tag/ for more details.
	-1.5 SPF_CHECK_PASS SPF reports sender host as permitted sender for
	sender-domain
	-0.0 SPF_PASS               SPF: sender matches SPF record
	-0.6 RP_MATCHES_RCVD Envelope sender domain matches handover relay
	domain
X-Headers-End: 1XlE0c-0003Fs-LX
Subject: [Bitcoin-development] Bug in genbuild.sh ?
X-BeenThere: bitcoin-development@lists.sourceforge.net
X-Mailman-Version: 2.1.9
Precedence: list
List-Id: <bitcoin-development.lists.sourceforge.net>
List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/bitcoin-development>,
	<mailto:bitcoin-development-request@lists.sourceforge.net?subject=unsubscribe>
List-Archive: <http://sourceforge.net/mailarchive/forum.php?forum_name=bitcoin-development>
List-Post: <mailto:bitcoin-development@lists.sourceforge.net>
List-Help: <mailto:bitcoin-development-request@lists.sourceforge.net?subject=help>
List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/bitcoin-development>,
	<mailto:bitcoin-development-request@lists.sourceforge.net?subject=subscribe>
X-List-Received-Date: Mon, 03 Nov 2014 09:33:14 -0000

Hello,

I just compiled bitCoin core on Debian 7.
I got an error message "too many arguments" when executing genuid.sh
I fixed it as shown hereafter and it worked fine.


pcfg:~/bitcoinCore> diff -u shareOLD/genbuild.sh share/genbuild.sh
--- shareOLD/genbuild.sh        2014-11-03 08:32:08.950708258 +0100
+++ share/genbuild.sh   2014-11-03 08:38:44.626698114 +0100
@@ -16,7 +16,7 @@
  DESC=""
  SUFFIX=""
  LAST_COMMIT_DATE=""
-if [ -e "$(which git 2>/dev/null)" -a $(git rev-parse 
--is-inside-work-tree 2>/dev/null) = "true" ]; then
+if [ -e "$(which git 2>/dev/null)" -a "$(git rev-parse 
--is-inside-work-tree 2>/dev/null)" = "true" ]; then
      # clean 'dirty' status of touched files that haven't been modified
      git diff >/dev/null 2>/dev/null


Best regards,
-- 
Francis