From: Erlend E. Aasland Date: Thu, 8 Jun 2023 22:26:03 +0000 (+0200) Subject: CI: Configure macOS build as per updated devguide recommendations (#105533) X-Git-Tag: v3.13.0a1~1825 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a5f23d411062f9f29f8a7d7ddefe60d5d8e17d2e;p=thirdparty%2FPython%2Fcpython.git CI: Configure macOS build as per updated devguide recommendations (#105533) --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2aa3b403c73a..77c2088c7144 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 \