Explorar el Código

Toolchain: Add missing buildstep calls

Gunnar Beutner hace 4 años
padre
commit
05d140e7bd
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      Toolchain/BuildIt.sh

+ 2 - 2
Toolchain/BuildIt.sh

@@ -227,9 +227,9 @@ pushd "$DIR/Build/$ARCH"
             # under macOS generated makefiles are not resolving the "intl"
             # dependency properly to allow linking its own copy of
             # libintl when building with --enable-shared.
-            "$MAKE" -j "$MAKEJOBS" || true
+            buildstep "binutils/build" "$MAKE" -j "$MAKEJOBS" || true
             pushd intl
-            "$MAKE" all-yes
+            buildstep "binutils/build" "$MAKE" all-yes
             popd
         fi
         echo "XXX build binutils"