actions: add comment for gettext workaround

This commit is contained in:
Dag Heyman 2020-05-08 08:22:18 +02:00
parent e1b85e7a16
commit 304895b255
No known key found for this signature in database
GPG Key ID: 06FC004369E7D338

View File

@ -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