mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
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.
This commit is contained in:
parent
6a55370401
commit
6805cf00ad
Notes:
sideshowbarker
2024-07-17 04:34:19 +09:00
Author: https://github.com/rusitschka 🔰 Commit: https://github.com/SerenityOS/serenity/commit/6805cf00ad Pull-request: https://github.com/SerenityOS/serenity/pull/16032 Reviewed-by: https://github.com/BertalanD ✅
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue