Wrap a long configure line

This commit is contained in:
Josh Stone 2019-03-06 20:33:09 -08:00
parent 3477939b79
commit c843fe710b
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,8 @@ pushd binutils-$TARGET
curl https://ftp.gnu.org/gnu/binutils/binutils-$BINUTILS.tar.bz2 | tar xjf -
mkdir binutils-build
cd binutils-build
hide_output ../binutils-$BINUTILS/configure --target=$TARGET --prefix=$PREFIX --with-sysroot=$SYSROOT
hide_output ../binutils-$BINUTILS/configure --target=$TARGET \
--prefix=$PREFIX --with-sysroot=$SYSROOT
hide_output make -j10
hide_output make install
popd