diff options
author | Francis GASCHET <fg@numlog.fr> | 2014-11-03 10:16:23 +0100 |
---|---|---|
committer | bitcoindev <bitcoindev@gnusha.org> | 2014-11-03 09:33:14 +0000 |
commit | 84e7f1143ef23d985d4631ebe2b3e115dd0c6bc9 (patch) | |
tree | 3f9c615bc20dfce0ad090a62ce393ea886083ff3 | |
parent | 668f72fd73f582777e5e70f3333a0e5ba2b9d20b (diff) | |
download | pi-bitcoindev-84e7f1143ef23d985d4631ebe2b3e115dd0c6bc9.tar.gz pi-bitcoindev-84e7f1143ef23d985d4631ebe2b3e115dd0c6bc9.zip |
[Bitcoin-development] Bug in genbuild.sh ?
-rw-r--r-- | a2/b72c2b106bdcf6821d3343fafd23573484cd7d | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/a2/b72c2b106bdcf6821d3343fafd23573484cd7d b/a2/b72c2b106bdcf6821d3343fafd23573484cd7d new file mode 100644 index 000000000..9597fc1d9 --- /dev/null +++ b/a2/b72c2b106bdcf6821d3343fafd23573484cd7d @@ -0,0 +1,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 + + + |