fix absent makeinfo in ventura, by Lucky1978

Signed-off-by: SergeySlice <sergey.slice@gmail.com>
This commit is contained in:
SergeySlice 2022-11-19 18:41:33 +03:00
parent c99a1d91ab
commit 734e32c709
2 changed files with 2 additions and 3 deletions

View File

@ -622,7 +622,6 @@
CloverEFI/UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf
#UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf
#UefiCpuPkg/CpuDxe/CpuDxe.inf
#UefiCpuPkg/CpuDxe/CpuDxe.inf
CloverEFI/CpuDxe/Cpu.inf
PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf {
<PcdsFixedAtBuild>

View File

@ -365,7 +365,7 @@ CompileBinutils () {
echo "$cmd" > "$logfile"
eval "$cmd" >> "$logfile" 2>&1
echo "- ${BINUTILS_VERSION} make..."
cmd="make"
cmd="make MAKEINFO=true"
logfile="$DIR_LOGS/binutils.$ARCH.make.log.txt"
echo "$cmd" > "$logfile"
eval "$cmd" >/dev/null 2>> "$logfile"
@ -373,7 +373,7 @@ CompileBinutils () {
echo "Error compiling ${BINUTILS_VERSION} ! Check the log $logfile"
exit 1
fi
cmd="make install-strip"
cmd="make MAKEINFO=true install-strip"
logfile="$DIR_LOGS/binutils.$ARCH.install.log.txt"
echo "$cmd" > "$logfile"
eval "$cmd" >> "$logfile" 2>&1