We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d8959b commit cd22e83Copy full SHA for cd22e83
.github/workflows/build.yml
@@ -159,10 +159,10 @@ jobs:
159
- uses: actions/checkout@v3
160
- name: Prepare homebrew environment variables
161
run: |
162
- echo "LDFLAGS=-L$(brew --prefix tcl-tk)/lib" >> $GITHUB_ENV
163
- echo "PKG_CONFIG_PATH=$(brew --prefix openssl@1.1)/lib/pkgconfig:$(brew --prefix tcl-tk)/lib/pkgconfig" >> $GITHUB_ENV
+ brew install pkg-config
+ echo "PKG_CONFIG_PATH=$(brew --prefix tcl-tk)/lib/pkgconfig" >> $GITHUB_ENV
164
- name: Configure CPython
165
- run: ./configure --with-pydebug --prefix=/opt/python-dev
+ run: ./configure --with-pydebug --prefix=/opt/python-dev --with-openssl=$(brew --prefix openssl)
166
- name: Build CPython
167
run: make -j4
168
- name: Display build info
0 commit comments