Skip to content

Commit bd4f9b6

Browse files
committed
Fix binutils installation
1 parent 2b103ce commit bd4f9b6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

travis-ci/docker_build_wrap.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ if [ "${MB_ML_VER}" == "_2_24" ]; then
2020
apt-get install -y --no-install-recommends bison flex gettext texinfo dejagnu quilt chrpath dwz debugedit python3 file xz-utils lsb-release zlib1g-dev procps
2121
curl -fsSL https://ftp.gnu.org/gnu/binutils/binutils-2.36.1.tar.xz | tar -x --xz
2222
pushd binutils-2.36.1
23-
./configure
24-
make -j$(nproc)
23+
./configure &> /dev/null
24+
make -j$(nproc) &> /dev/null
25+
make install &> /dev/null
2526
popd
2627
fi
2728

0 commit comments

Comments
 (0)