A recent patch broke make standalone. The function find_word is not available when running make standalone, replace it with a simple grep. Reported-by: Nina Schoetterl-Glausch <nsg@xxxxxxxxxxxxx> Fixes: 743cacf7 ("s390x: don't run migration tests under PV") Signed-off-by: Claudio Imbrenda <imbrenda@xxxxxxxxxxxxx> --- scripts/s390x/func.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/s390x/func.bash b/scripts/s390x/func.bash index 2a941bbb..6c75e89a 100644 --- a/scripts/s390x/func.bash +++ b/scripts/s390x/func.bash @@ -21,7 +21,7 @@ function arch_cmd_s390x() "$cmd" "$testname" "$groups" "$smp" "$kernel" "$opts" "$arch" "$check" "$accel" "$timeout" # run PV test case - if [ "$ACCEL" = 'tcg' ] || find_word "migration" "$groups"; then + if [ "$ACCEL" = 'tcg' ] || grep -q "migration" <<< "$groups"; then return fi kernel=${kernel%.elf}.pv.bin -- 2.38.1