ccache: unset CI env variable before running cmake

ccache's cmake files will turn on a "dev mode" if CI is set in the environment, turning on -Werror among other things.  This was causing the build on i686 to fail due to a warning with fmt 11.  We don't really want ccache's dev mode, so unset it explicitly.
This commit is contained in:
Jeremy Drake
2024-12-26 16:01:35 -08:00
committed by Christoph Reiter
parent de65aa5bdb
commit e31b1b9c45

View File

@@ -3,7 +3,7 @@
pkgname=ccache
pkgver=4.10.2
pkgrel=3
pkgrel=4
pkgdesc="A compiler cache (mingw-w64)"
arch=('i686' 'x86_64')
url="https://ccache.samba.org/"
@@ -33,6 +33,7 @@ build() {
[[ -d build-${CHOST} ]] && rm -rf build-${CHOST}
mkdir -p build-${CHOST} && cd build-${CHOST}
unset CI
/usr/bin/cmake \
-GNinja \
-DCMAKE_INSTALL_PREFIX=/usr \