From 93c173340a4707ccbdad99a6207764dabba4ea59 Mon Sep 17 00:00:00 2001 From: Friwi Date: Fri, 8 Dec 2023 13:27:16 +0100 Subject: [PATCH] Update compile_macosx.sh --- compile_macosx.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/compile_macosx.sh b/compile_macosx.sh index 44843e6..23278c2 100755 --- a/compile_macosx.sh +++ b/compile_macosx.sh @@ -53,6 +53,9 @@ if [ ! -d "jcef_build" ]; then fi cd jcef_build +# Reinstall "six" python package to fix broken builds on amd64 +pip install --ignore-installed six + # MacOS: Generate amd64/arm64 Makefiles. if [ ${TARGETARCH} == 'amd64' ]; then cmake -G "Ninja" -DPROJECT_ARCH="x86_64" -DCMAKE_BUILD_TYPE=${BUILD_TYPE} ..