From 2fcefe56499c0f3338b9fbaa90e60a331964de5c Mon Sep 17 00:00:00 2001 From: Ludvig Michaelsson Date: Tue, 7 Nov 2023 08:57:33 +0100 Subject: [PATCH] ci: list all libfido2 dependencies For some reason, openssl@3 is sometimes not listed as "installed". Be less restrictive and list all dependencies regardless of their currently perceived state by brew. --- build-aux/ci/build-osx.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/ci/build-osx.sh b/build-aux/ci/build-osx.sh index a37a72e..8e7abcc 100755 --- a/build-aux/ci/build-osx.sh +++ b/build-aux/ci/build-osx.sh @@ -2,7 +2,7 @@ set -ex # Link to the same OpenSSL version as libfido2. -OPENSSL="$(brew deps --installed libfido2 | grep openssl)" +OPENSSL="$(brew deps libfido2 | grep openssl)" LIBFIDO2_PKGCONF="$(brew --prefix libfido2)/lib/pkgconfig" OPENSSL_PKGCONF="$(brew --prefix "${OPENSSL}")/lib/pkgconfig" export PKG_CONFIG_PATH="${LIBFIDO2_PKGCONF}:${OPENSSL_PKGCONF}"