From 6805cf00adf77b7e83c7b2f000d62c89f10f7667 Mon Sep 17 00:00:00 2001 From: Steffen Rusitschka Date: Fri, 11 Nov 2022 19:07:26 +0100 Subject: [PATCH] Toolchain: Fix missing makeinfo on macOS Ventura macOS ventura no longer comes with makeinfo. binutils has already been fixed - see https://github.com/SerenityOS/serenity/pull/15932 This patch does the same for GDB. --- Toolchain/BuildIt.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Toolchain/BuildIt.sh b/Toolchain/BuildIt.sh index 42eaa5a959..fb7977a48a 100755 --- a/Toolchain/BuildIt.sh +++ b/Toolchain/BuildIt.sh @@ -345,8 +345,8 @@ pushd "$DIR/Build/$ARCH" fi echo "XXX build gdb" - buildstep "gdb/build" "$MAKE" -j "$MAKEJOBS" || exit 1 - buildstep "gdb/install" "$MAKE" install || exit 1 + buildstep "gdb/build" "$MAKE" MAKEINFO=true -j "$MAKEJOBS" || exit 1 + buildstep "gdb/install" "$MAKE" MAKEINFO=true install || exit 1 popd fi