From 1a873d00fef548a227286b06420f79ced65e8607 Mon Sep 17 00:00:00 2001 From: Chris Kleeschulte Date: Thu, 6 Aug 2015 17:18:22 -0400 Subject: [PATCH] Fixed shamus call to write patch file. --- bin/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/build b/bin/build index 9dc6b68b..8ace8c32 100755 --- a/bin/build +++ b/bin/build @@ -148,7 +148,7 @@ apply the current patch from "${root_dir}"/etc/bitcoin.patch? (y/N): " echo "Creating the sha marker for the patching in libbitcoind..." echo "Writing patch sha file to: \"${patch_sha}\"" - echo -n `shasum -a 256 "${root_dir}"/etc/bitcoin.patch | awk '{print $1}'` > "${patch_sha}" + echo -n `${shasum_cmd} "${root_dir}"/etc/bitcoin.patch | awk '{print $1}'` > "${patch_sha}" cache_files echo 'Build finished successfully.' else