util/build-gnu.sh: Add b3sum

Signed-off-by: Shreyans Jain <shreyansthebest2007@gmail.com>
This commit is contained in:
Shreyans Jain 2022-02-11 14:18:56 +05:30
parent 3176ad5c1b
commit 6391f4c28a
No known key found for this signature in database
GPG key ID: 05BFC63796DC3742

View file

@ -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}"