summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-06-08 23:00:53 (GMT)
committerGitHub <noreply@github.com>2023-06-08 23:00:53 (GMT)
commit68eeab7fdd1afd11bb058df173cab40d9ebe2b06 (patch)
tree86c6647d71b2b4079d3e2847552e16707ff9fed6 /.github
parent77c03a3b7241a8476665db89f058bb6eb15f8abb (diff)
downloadcpython-68eeab7fdd1afd11bb058df173cab40d9ebe2b06.zip
cpython-68eeab7fdd1afd11bb058df173cab40d9ebe2b06.tar.gz
cpython-68eeab7fdd1afd11bb058df173cab40d9ebe2b06.tar.bz2
[3.12] CI: Configure macOS build as per updated devguide recommendations (GH-105533) (#105536)
(cherry picked from commit a5f23d411062f9f29f8a7d7ddefe60d5d8e17d2e) Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 99acce9..e1d4047 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -242,9 +242,8 @@ jobs:
run: brew install pkg-config openssl@1.1 xz gdbm tcl-tk
- name: Configure CPython
run: |
- CFLAGS="-I$(brew --prefix gdbm)/include -I$(brew --prefix xz)/include" \
- LDFLAGS="-L$(brew --prefix gdbm)/lib -I$(brew --prefix xz)/lib" \
- PKG_CONFIG_PATH="$(brew --prefix tcl-tk)/lib/pkgconfig" \
+ GDBM_CFLAGS="-I$(brew --prefix gdbm)/include" \
+ GDBM_LIBS="-L$(brew --prefix gdbm)/lib -lgdbm" \
./configure \
--config-cache \
--with-pydebug \