瀏覽代碼

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.
Steffen Rusitschka 2 年之前
父節點
當前提交
6805cf00ad
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Toolchain/BuildIt.sh

+ 2 - 2
Toolchain/BuildIt.sh

@@ -345,8 +345,8 @@ pushd "$DIR/Build/$ARCH"
             fi
             fi
 
 
             echo "XXX build gdb"
             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
         popd
     fi
     fi