File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -182,13 +182,11 @@ jobs:
182
182
- uses : actions/checkout@v3
183
183
- name : Install Homebrew dependencies
184
184
run :
brew install pkg-config [email protected] xz gdbm tcl-tk
185
- - name : Prepare Homebrew environment variables
186
- run : |
187
- echo "CFLAGS=-I$(brew --prefix gdbm)/include -I$(brew --prefix xz)/include" >> $GITHUB_ENV
188
- echo "LDFLAGS=-L$(brew --prefix gdbm)/lib -I$(brew --prefix xz)/lib" >> $GITHUB_ENV
189
- echo "PKG_CONFIG_PATH=$(brew --prefix [email protected] )/lib/pkgconfig:$(brew --prefix tcl-tk)/lib/pkgconfig" >> $GITHUB_ENV
190
185
- name : Configure CPython
191
186
run : |
187
+ CFLAGS="-I$(brew --prefix gdbm)/include -I$(brew --prefix xz)/include" \
188
+ LDFLAGS="-L$(brew --prefix gdbm)/lib -I$(brew --prefix xz)/lib" \
189
+ PKG_CONFIG_PATH="$(brew --prefix tcl-tk)/lib/pkgconfig" \
192
190
./configure \
193
191
--with-pydebug \
194
192
--prefix=/opt/python-dev \
You can’t perform that action at this time.
0 commit comments