From: Paul Smith Date: Sat, 21 Sep 2019 16:39:07 +0000 (-0400) Subject: * tests/run_make_tests.pl (find_prog): Fix syntax error. X-Git-Tag: 4.2.92~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00fa3ca3a51169584fed5160907c7aef1aa6ca07;p=thirdparty%2Fmake.git * tests/run_make_tests.pl (find_prog): Fix syntax error. --- diff --git a/tests/run_make_tests.pl b/tests/run_make_tests.pl index 4a1a8c10..1c2cb069 100644 --- a/tests/run_make_tests.pl +++ b/tests/run_make_tests.pl @@ -470,7 +470,7 @@ sub find_prog if (! $d) { foreach my $e (path()) { $prog = catfile($e, $f); - -x $prog or continue; + -x $prog or next; ($v, $d, $f) = splitpath($prog); last; }