From: Oto Šťáva Date: Tue, 30 Apr 2024 09:19:34 +0000 (+0200) Subject: .github/workflows/macOS: fix prefix for ARM macOS X-Git-Tag: v5.7.3~8^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=71c10ed7059391f5540610a146a6699a015cfb35;p=thirdparty%2Fknot-resolver.git .github/workflows/macOS: fix prefix for ARM macOS --- diff --git a/.github/workflows/macOS.yaml b/.github/workflows/macOS.yaml index c99706455..fd834883a 100644 --- a/.github/workflows/macOS.yaml +++ b/.github/workflows/macOS.yaml @@ -27,12 +27,13 @@ jobs: git clone -b ${KNOT_DNS_VERSION} https://gitlab.nic.cz/knot/knot-dns.git cd knot-dns autoreconf -fi - ./configure --disable-static --disable-fastparser --disable-documentation --disable-daemon --disable-utilities --with-lmdb=no + ./configure --prefix=${HOME}/.local/usr --disable-static --disable-fastparser --disable-documentation --disable-daemon --disable-utilities --with-lmdb=no make -j2 install cd .. - name: Build resolver run: | + export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:${HOME}/.local/usr/lib/pkgconfig" meson build_darwin --default-library=static --buildtype=debugoptimized --prefix=${HOME}/.local/usr -Dc_args='-fno-omit-frame-pointer' ninja -C build_darwin -v install