From 248bf1d52cbf4de6acfbd45082e578d1d1dbf1ab Mon Sep 17 00:00:00 2001 From: Chris Kleeschulte Date: Mon, 27 Jul 2015 17:39:20 -0400 Subject: [PATCH] Included the wallet option for building while under test env. --- bin/build-libbitcoind | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bin/build-libbitcoind b/bin/build-libbitcoind index 98f6d3ab..057e42bc 100755 --- a/bin/build-libbitcoind +++ b/bin/build-libbitcoind @@ -9,7 +9,11 @@ build_dependencies () { if [ -d "${btc_dir}" ]; then pushd "${btc_dir}"/depends echo "using host for dependencies: ${host}" - make HOST=${host} NO_QT=1 NO_WALLET=1 NO_UPNP=1 #host is arch-os, e.g. x86_64-linux + if [ "${test}" = true ]; then + make HOST=${host} NO_QT=1 NO_UPNP=1 + else + make HOST=${host} NO_QT=1 NO_WALLET=1 NO_UPNP=1 + fi popd fi } @@ -40,6 +44,7 @@ fi test= if [ "${BITCOINDJS_ENV}" == "test" ]; then + test=true options=`cat ${root_dir}/bin/config_options_test.sh` fi