Toolchain: Disable makeinfo for binutils

This is necessary to build on MacOS. As discussed in #15530, Serenity
no longer appears to build on MacOS Ventura. This attempts to fix that
by enforcing it at the command level.
This commit is contained in:
Christopher Wales 2022-11-04 23:25:26 +00:00 committed by Andrew Kaster
parent 5839ef2ed8
commit 266882937d
Notes: sideshowbarker 2024-07-17 04:46:02 +09:00

View File

@ -376,8 +376,8 @@ pushd "$DIR/Build/$ARCH"
popd
fi
echo "XXX build binutils"
buildstep "binutils/build" "$MAKE" -j "$MAKEJOBS" || exit 1
buildstep "binutils/install" "$MAKE" install || exit 1
buildstep "binutils/build" "$MAKE" MAKEINFO=true -j "$MAKEJOBS" || exit 1
buildstep "binutils/install" "$MAKE" MAKEINFO=true install || exit 1
popd
echo "XXX serenity libc headers"