diff options
author | Nicolas Van Bossuyt <nicolas.van.bossuyt@gmail.com> | 2019-11-11 20:07:44 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-11 20:07:43 +0100 |
commit | 2d19072115a2dde268435e2b300a7a93387db019 (patch) | |
tree | c9acf863d1e45af2c25d0d1979ea4b21bc7f6aba /Toolchain/BuildIt.sh | |
parent | dd2900eda05b7ca6c9fc0c7f1840acdf795cf1b3 (diff) | |
download | serenity-2d19072115a2dde268435e2b300a7a93387db019.zip |
Toolchain: Fix indentation in BuildIt.sh (#761)
Diffstat (limited to 'Toolchain/BuildIt.sh')
-rwxr-xr-x | Toolchain/BuildIt.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Toolchain/BuildIt.sh b/Toolchain/BuildIt.sh index 5fa9975381..964a7d590f 100755 --- a/Toolchain/BuildIt.sh +++ b/Toolchain/BuildIt.sh @@ -74,20 +74,20 @@ pushd "$DIR/Build/" pushd binutils "$DIR"/Tarballs/binutils-2.32/configure --prefix="$PREFIX" \ - --target="$TARGET" \ - --with-sysroot="$SYSROOT" \ - --disable-nls || exit 1 + --target="$TARGET" \ + --with-sysroot="$SYSROOT" \ + --disable-nls || exit 1 make -j "$MAKEJOBS" || exit 1 make install || exit 1 popd pushd gcc "$DIR"/Tarballs/gcc-8.3.0/configure --prefix="$PREFIX" \ - --target="$TARGET" \ - --with-sysroot="$SYSROOT" \ - --disable-nls \ - --with-newlib \ - --enable-languages=c,c++ || exit 1 + --target="$TARGET" \ + --with-sysroot="$SYSROOT" \ + --disable-nls \ + --with-newlib \ + --enable-languages=c,c++ || exit 1 echo "XXX build gcc and libgcc" make -j "$MAKEJOBS" all-gcc all-target-libgcc || exit 1 |