From e624fd805fe1e5e39d53f03b1ce7c07b090ab92a Mon Sep 17 00:00:00 2001 From: Rolf Leggewie Date: Mon, 25 Aug 2025 18:27:58 +0800 Subject: [PATCH] lib / kernel-make.sh: drop undefined make_filter call. Closes #8529 --- lib/functions/compilation/kernel-make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/functions/compilation/kernel-make.sh b/lib/functions/compilation/kernel-make.sh index 11629ac5a..51f05f662 100644 --- a/lib/functions/compilation/kernel-make.sh +++ b/lib/functions/compilation/kernel-make.sh @@ -72,7 +72,7 @@ function run_kernel_make_internal() { # last statement, so it passes the result to calling function. "env -i" is used for empty env full_command=("${KERNEL_MAKE_RUNNER:-run_host_command_logged}" "env" "-i" "${common_make_envs[@]}" - make "${common_make_params_quoted[@]@Q}" "$@" "${make_filter}") + make "${common_make_params_quoted[@]@Q}" "$@") "${full_command[@]}" # and exit with it's code, since it's the last statement }