lib / kernel-make.sh: drop undefined make_filter call. Closes #8529

This commit is contained in:
Rolf Leggewie
2025-08-25 18:27:58 +08:00
parent 34f3ddd429
commit e624fd805f

View File

@@ -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
}