From: Kornel Benko Date: Tue, 8 Oct 2024 09:36:25 +0000 (+0200) Subject: Amend 341410a5: Change log-output to better parse urls X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=4063951ded3fabcfa2646e279c664f02b31b3359;p=lyx.git Amend 341410a5: Change log-output to better parse urls --- diff --git a/development/checkurls/search_url.pl b/development/checkurls/search_url.pl index 5bd4c35215..8bf9789c78 100755 --- a/development/checkurls/search_url.pl +++ b/development/checkurls/search_url.pl @@ -228,6 +228,10 @@ for (my $i = 0; $i < $NR_JOBS; $i++) { # Number of subprocesses if ($res || $checkSelectedOnly) { printx("$err_txt \"$u\"\n", $outSum, $fe, $fs); } + else { + printx("OK url: \"$u\"\n", $outSum, $fe, $fs); + $printSourceFiles = 1; + } if ($printSourceFiles) { if (defined($URLS{$u})) { for my $f (sort keys %{$URLS{$u}}) { @@ -245,7 +249,7 @@ for (my $i = 0; $i < $NR_JOBS; $i++) { # Number of subprocesses $wait[$i] = $pid; } -for (my $i = 0; $i < 10; $i++) { +for (my $i = 0; $i < $NR_JOBS; $i++) { my $p = $wait[$i]; if ($p > 0) { waitpid($p, 0);