* tests/run_make_tests.pl (find_prog): Fix syntax error.

This commit is contained in:
Paul Smith 2019-09-21 12:39:07 -04:00
parent 00e590fdef
commit 00fa3ca3a5

View File

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