PKGBUILD: make the kernel build log less verbose

We don't really need to see every single compiled file,
just print the errors and warnings.

vscode also formatted the entire file to remove trailing spaces.
This commit is contained in:
Yaraslau Furman 2025-01-04 14:21:44 +02:00
parent 476799e2f9
commit 2e93191001

View file

@ -177,6 +177,7 @@ source=(
) )
[[ -n "${_use_llvm_lto}" ]] && BUILD_FLAGS=("LLVM=1" "LLVM_IAS=1") [[ -n "${_use_llvm_lto}" ]] && BUILD_FLAGS=("LLVM=1" "LLVM_IAS=1")
[[ -z "${_debug_script}" ]] && BUILD_FLAGS+=("-s")
export "KBUILD_BUILD_HOST=archlinux" export "KBUILD_BUILD_HOST=archlinux"
export "KBUILD_BUILD_USER=${pkgbase}" export "KBUILD_BUILD_USER=${pkgbase}"