Skip to content

Commit

Permalink
Toolchain: Fix missing makeinfo on macOS Ventura
Browse files Browse the repository at this point in the history
macOS ventura no longer comes with makeinfo. binutils has already been
fixed - see SerenityOS#15932

This patch does the same for GDB.
  • Loading branch information
rusitschka authored and gunnarbeutner committed Nov 12, 2022
1 parent 6a55370 commit 6805cf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Toolchain/BuildIt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 6805cf0

Please sign in to comment.