From 423ff5900e354976efcfd9454fe2471d5f68f9c7 Mon Sep 17 00:00:00 2001 From: filipecosta90 Date: Thu, 21 Nov 2024 23:13:02 +0000 Subject: [PATCH] Fixing pkgconfig link and unlink --- .github/workflows/ci.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bead916..06cb269 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -110,8 +110,6 @@ jobs: - uses: actions/checkout@v1 - name: Install dependencies run: | - brew unlink pkg-config@0.29.2 || true - brew unlink pkg-config || true brew install autoconf automake libtool libevent pkg-config openssl@${{ matrix.openssl }} # Handle OpenSSL 3.0 keg-only setup if [ "${{ matrix.openssl }}" == "3.0" ]; then @@ -122,12 +120,6 @@ jobs: source $HOME/.bash_profile /opt/homebrew/opt/openssl@3.0/bin/c_rehash fi - - # Handle missing pkg-config or pkgconf - if ! brew list --versions pkgconf > /dev/null; then - brew install pkgconf - fi - brew unlink pkgconf && brew link pkgconf - name: Build run: autoreconf -ivf && PKG_CONFIG_PATH=`brew --prefix openssl@${{ matrix.openssl }}`/lib/pkgconfig ./configure && make