Browse Source

Fix macos-intel build on macos arm64 host

Signed-off-by: falkTX <falktx@falktx.com>
main
falkTX 5 months ago
parent
commit
2f2687d623
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      .github/workflows/bootstrap.yml
  2. +1
    -1
      bootstrap-python.sh

+ 1
- 1
.github/workflows/bootstrap.yml View File

@@ -4,7 +4,7 @@ on:
push:

env:
CACHE_VERSION: 14
CACHE_VERSION: 15
DEBIAN_FRONTEND: noninteractive
PAWPAW_SKIP_TESTS: 1



+ 1
- 1
bootstrap-python.sh View File

@@ -80,7 +80,7 @@ function build_conf_openssl() {
fi
export RELEASE="whatever"
export BUILD="unknown"
elif [ "${MACOS_UNIVERSAL}" -eq 0 ] && [ "$(uname -m)" = "x86_64" ]; then
elif [ "${MACOS}" -eq 1 ] && [ "${MACOS_UNIVERSAL}" -eq 0 ]; then
export MACHINE="x86_64"
fi



Loading…
Cancel
Save