Skip to content

Commit

Permalink
dropme: logs from osx
Browse files Browse the repository at this point in the history
  • Loading branch information
dacav committed Dec 20, 2024
1 parent 5195bf7 commit 2ddea7a
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion build-aux/ci/build-osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,28 @@ LIBFIDO2_PKGCONF="$(brew --prefix libfido2)/lib/pkgconfig"
OPENSSL_PKGCONF="$(brew --prefix "${OPENSSL}")/lib/pkgconfig"
export PKG_CONFIG_PATH="${LIBFIDO2_PKGCONF}:${OPENSSL_PKGCONF}"

mkdir -p ./dacav_prefix && rm -rf ./dacav_prefix/*
mkdir -p ./dacav_fakeroot && rm -rf ./dacav_fakeroot/*

./autogen.sh
./configure --disable-silent-rules --disable-man
./configure --disable-silent-rules --disable-man --prefix="$PWD/dacav_prefix"
make -j $(sysctl -n hw.logicalcpu)
make check

make install
find -ls ./dacav_prefix

make install DESTDIR=./dacav_fakeroot
find -ls ./dacav_fakeroot

mkdir -p ./dacav_fakeroot && rm -rf ./dacav_fakeroot/*

./configure --disable-silent-rules --disable-man --with-pam-dir="./dacav_fakeroot/pamela/"
make install DESTDIR="$PWD/dacav_fakeroot"
find . -ls ./dacav_fakeroot

make install DESTDIR="$PWD/dacav_fakeroot"
find . -ls ./dacav_fakeroot

# Fail, so I can find failure.
false

0 comments on commit 2ddea7a

Please sign in to comment.