diff --git a/.github/workflows/macOS.yml b/.github/workflows/macOS.yml index 51751834..22806d32 100644 --- a/.github/workflows/macOS.yml +++ b/.github/workflows/macOS.yml @@ -49,6 +49,9 @@ jobs: gpg --verify Python-${PYTHON_VER}.tgz.asc tar -xzvf Python-${PYTHON_VER}.tgz cd Python-${PYTHON_VER} + # Make sure gettext is not installed when configuring Python, + # otherwise it seems to break the linking for PyOtherSide build later. + # Re-intall after, because it's needed for wget. brew uninstall gettext --ignore-dependencies ./configure MACOSX_DEPLOYMENT_TARGET=10.13 CPPFLAGS="-I/opt/openssl/include" LDFLAGS="-L/opt/openssl/lib" CC=clang --enable-framework --with-openssl=/opt/openssl --enable-optimizations sudo make altinstall