From 6391f4c28aad3a6e384e411f213c1fd13054462c Mon Sep 17 00:00:00 2001 From: Shreyans Jain Date: Fri, 11 Feb 2022 14:18:56 +0530 Subject: [PATCH] util/build-gnu.sh: Add b3sum Signed-off-by: Shreyans Jain --- util/build-gnu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/build-gnu.sh b/util/build-gnu.sh index a52d42107..8f6e431a6 100755 --- a/util/build-gnu.sh +++ b/util/build-gnu.sh @@ -20,7 +20,7 @@ make PROFILE=release BUILDDIR="$PWD/target/release/" cp "${BUILDDIR}/install" "${BUILDDIR}/ginstall" # The GNU tests rename this script before running, to avoid confusion with the make target # Create *sum binaries -for sum in b2sum md5sum sha1sum sha224sum sha256sum sha384sum sha512sum +for sum in b2sum b3sum md5sum sha1sum sha224sum sha256sum sha384sum sha512sum do sum_path="${BUILDDIR}/${sum}" test -f "${sum_path}" || cp "${BUILDDIR}/hashsum" "${sum_path}"