check for libbbitcoind.so.
This commit is contained in:
parent
20ad16fd72
commit
612d263180
@ -3,6 +3,14 @@
|
|||||||
cur_dir="$(pwd)"
|
cur_dir="$(pwd)"
|
||||||
os_dir=$(dirname "$(./platform/os.sh)")
|
os_dir=$(dirname "$(./platform/os.sh)")
|
||||||
|
|
||||||
|
if test -e "${os_dir}/libbitcoind.so"; then
|
||||||
|
read -r -p 'libbitcoind.so already built. Rebuild? (Y/n): ' choice
|
||||||
|
if test x"$choice" != x'n' -a x"$choice" != x'N'; then
|
||||||
|
echo 'libbitcoind.so ready.'
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
if test -n "$1"; then
|
if test -n "$1"; then
|
||||||
if test "$1" = 'remote'; then
|
if test "$1" = 'remote'; then
|
||||||
git clone git://github.com/bitcoin/bitcoin.git libbitcoind || exit 1
|
git clone git://github.com/bitcoin/bitcoin.git libbitcoind || exit 1
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user