]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
CI: Configure macOS build as per updated devguide recommendations (#105533)
authorErlend E. Aasland <erlend.aasland@protonmail.com>
Thu, 8 Jun 2023 22:26:03 +0000 (00:26 +0200)
committerGitHub <noreply@github.com>
Thu, 8 Jun 2023 22:26:03 +0000 (22:26 +0000)
.github/workflows/build.yml

index 2aa3b403c73aacd65fb993777755592f033d67b6..77c2088c7144974aa22e2f6c8147f6db797a8a50 100644 (file)
@@ -235,9 +235,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 \