From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 8 Jun 2023 22:57:01 +0000 (-0700) Subject: [3.11] CI: Configure macOS build as per updated devguide recommendations (GH-105533... X-Git-Tag: v3.11.5~308 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c3b8f9d0d22f54eeca353a140c73e126533f1ee7;p=thirdparty%2FPython%2Fcpython.git [3.11] CI: Configure macOS build as per updated devguide recommendations (GH-105533) (#105537) (cherry picked from commit a5f23d411062f9f29f8a7d7ddefe60d5d8e17d2e) Co-authored-by: Erlend E. Aasland --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c2293cb4de30..2ffd73c9db9c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -228,9 +228,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 \