Skip to content

Commit 749cc47

Browse files
committed
build-gnu.sh: Build seq as multicall-binary
1 parent e96b536 commit 749cc47

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

util/build-gnu.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,14 @@ fi
8888
cd -
8989

9090
export CARGOFLAGS # tell to make
91-
# bug: seq with MULTICALL=y breaks env-signal-handler.sh
92-
"${MAKE}" UTILS="install seq"
91+
"${MAKE}" UTILS=install
9392
ln -vf "${UU_BUILD_DIR}/install" "${UU_BUILD_DIR}/ginstall" # The GNU tests use renamed install to ginstall
9493
if [ "${SELINUX_ENABLED}" = 1 ];then
9594
# Build few utils for SELinux for faster build. MULTICALL=y fails...
96-
"${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"
95+
"${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"
9796
else
9897
# Use MULTICALL=y for faster build
99-
"${MAKE}" MULTICALL=y SKIP_UTILS="install more seq"
98+
"${MAKE}" MULTICALL=y SKIP_UTILS="install more"
10099
for binary in $("${UU_BUILD_DIR}"/coreutils --list)
101100
do ln -vf "${UU_BUILD_DIR}/coreutils" "${UU_BUILD_DIR}/${binary}"
102101
done

0 commit comments

Comments
 (0)