Procházet zdrojové kódy

Toolchain: Fix indentation in BuildIt.sh (#761)

Nicolas Van Bossuyt před 5 roky
rodič
revize
2d19072115
1 změnil soubory, kde provedl 8 přidání a 8 odebrání
  1. 8 8
      Toolchain/BuildIt.sh

+ 8 - 8
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