From: Alban Bedel Date: Sat, 15 Jun 2019 10:18:01 +0000 (+0200) Subject: scripts: time.pl: Don't print the time on stderr X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=340df72e0745236379554dc9ff487e260a424465;p=openwrt%2Fstaging%2Fstintel.git scripts: time.pl: Don't print the time on stderr Having the build time written on stderr make it appear with V=w although it is not an error or warning. Just write the time on stdout to have it part of the build log like all the rest, but not clutter the output when only warnings and errors should be shown. Signed-off-by: Alban Bedel --- diff --git a/scripts/time.pl b/scripts/time.pl index a23b57c89e..6f10170b3b 100755 --- a/scripts/time.pl +++ b/scripts/time.pl @@ -54,7 +54,7 @@ else { my ($sec2, $usec2) = gettime(); my (undef, undef, $cuser, $csystem) = times(); - printf STDERR "%s#%.2f#%.2f#%.2f\n", + printf STDOUT "%s#%.2f#%.2f#%.2f\n", $prefix, $cuser, $csystem, ($sec2 - $sec) + ($usec2 - $usec) / 1000000;