Skip to content

Commit 227501b

Browse files
authored
build-gnu.sh: Remove 2 non-GNU binary
1 parent 7c62885 commit 227501b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

util/build-gnu.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ fi
9595
cd -
9696

9797
# Pass the feature flags to make, which will pass them to cargo
98-
"${MAKE}" PROFILE="${PROFILE}" CARGOFLAGS="${CARGO_FEATURE_FLAGS}"
98+
"${MAKE}" PROFILE="${PROFILE}" SKIP_UTILS=more CARGOFLAGS="${CARGO_FEATURE_FLAGS}"
9999
# min test for SELinux
100100
[ "${SELINUX_ENABLED}" = 1 ] && touch g && "${PROFILE}"/stat -c%C g && rm g
101101

102102
cp "${UU_BUILD_DIR}/install" "${UU_BUILD_DIR}/ginstall" # The GNU tests rename this script before running, to avoid confusion with the make target
103103
# Create *sum binaries
104-
for sum in b2sum b3sum md5sum sha1sum sha224sum sha256sum sha384sum sha512sum; do
104+
for sum in b2sum md5sum sha1sum sha224sum sha256sum sha384sum sha512sum; do
105105
sum_path="${UU_BUILD_DIR}/${sum}"
106106
test -f "${sum_path}" || (cd ${UU_BUILD_DIR} && ln -s "hashsum" "${sum}")
107107
done

0 commit comments

Comments
 (0)