From 3e6c8de2091151a349a55910ba1c23391b782390 Mon Sep 17 00:00:00 2001 From: KenHV Date: Mon, 23 May 2022 23:43:50 +0530 Subject: [PATCH] PKGBUILD: Don't force Clang Signed-off-by: KenHV --- PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index 2156a97bc639e3..d7d2635e990109 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -76,7 +76,7 @@ prepare() { build() { cd .. if [ "$ccache" = "y" ]; then - make CC="ccache clang" all -j$(nproc --all) + env PATH="/usr/lib/ccache/bin:${PATH}" make all -j$(nproc --all) else make all -j$(nproc --all) fi