From 749cc47ba2e3888bf180a97a200f275532b20e20 Mon Sep 17 00:00:00 2001 From: oech3 <79379754+oech3@users.noreply.github.com> Date: Sat, 10 Jan 2026 10:56:51 +0900 Subject: [PATCH] build-gnu.sh: Build seq as multicall-binary --- util/build-gnu.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/util/build-gnu.sh b/util/build-gnu.sh index ea059c432..0937bcc63 100755 --- a/util/build-gnu.sh +++ b/util/build-gnu.sh @@ -88,15 +88,14 @@ fi cd - export CARGOFLAGS # tell to make -# bug: seq with MULTICALL=y breaks env-signal-handler.sh - "${MAKE}" UTILS="install seq" + "${MAKE}" UTILS=install ln -vf "${UU_BUILD_DIR}/install" "${UU_BUILD_DIR}/ginstall" # The GNU tests use renamed install to ginstall if [ "${SELINUX_ENABLED}" = 1 ];then # Build few utils for SELinux for faster build. MULTICALL=y fails... - "${MAKE}" UTILS="cat chcon chmod cp cut dd echo env groups id ln ls mkdir mkfifo mknod mktemp mv printf rm rmdir runcon stat test touch tr true uname wc whoami" + "${MAKE}" UTILS="cat chcon chmod cp cut dd echo env groups id ln ls mkdir mkfifo mknod mktemp mv printf rm rmdir runcon seq stat test touch tr true uname wc whoami" else # Use MULTICALL=y for faster build - "${MAKE}" MULTICALL=y SKIP_UTILS="install more seq" + "${MAKE}" MULTICALL=y SKIP_UTILS="install more" for binary in $("${UU_BUILD_DIR}"/coreutils --list) do ln -vf "${UU_BUILD_DIR}/coreutils" "${UU_BUILD_DIR}/${binary}" done