From 0aa57b5ef5b5b54133a0accad6149e5715ecc968 Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Thu, 23 Jun 2022 16:36:33 +0200 Subject: [PATCH] armbian-next: do not exclude 'CC' messages from kernel make --- lib/functions/compilation/kernel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/functions/compilation/kernel.sh b/lib/functions/compilation/kernel.sh index 14c61dfa7e..09a24859e7 100644 --- a/lib/functions/compilation/kernel.sh +++ b/lib/functions/compilation/kernel.sh @@ -390,7 +390,7 @@ function kernel_build_and_package() { display_alert "Building kernel" "${LINUXCONFIG} ${build_targets[*]}" "info" fasthash_debug "build" - make_filter="| grep --line-buffered -v -e 'CC' -e 'LD' -e 'AR' -e 'INSTALL' -e 'SIGN' -e 'XZ' " \ + make_filter="| grep --line-buffered -v -e 'LD' -e 'AR' -e 'INSTALL' -e 'SIGN' -e 'XZ' " \ do_with_ccache_statistics \ run_kernel_make_long_running "${install_make_params_quoted[@]@Q}" "${build_targets[@]}" fasthash_debug "build"