From 02aa5ea7847769f4590ae5b7bc7953a6d8844196 Mon Sep 17 00:00:00 2001 From: Roy Ivy III Date: Sat, 12 Feb 2022 11:47:12 -0600 Subject: [PATCH] maint/util ~ (build-gnu) fix missing 'b3sum' for *sum binary creation --- 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 842e1129b..2ab23ddc7 100755 --- a/util/build-gnu.sh +++ b/util/build-gnu.sh @@ -43,7 +43,7 @@ cd "${path_UUTILS}" && echo "[ pwd:'${PWD}' ]" make PROFILE="${UU_MAKE_PROFILE}" cp "${UU_BUILD_DIR}/install" "${UU_BUILD_DIR}/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; do +for sum in b2sum b3sum md5sum sha1sum sha224sum sha256sum sha384sum sha512sum; do sum_path="${UU_BUILD_DIR}/${sum}" test -f "${sum_path}" || cp "${UU_BUILD_DIR}/hashsum" "${sum_path}" done