mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-31 19:10:36 +00:00
Older version of perl cannot have foreach loop on same line as print.
This commit is contained in:
parent
cb6f23e117
commit
e1a2b86f4a
@ -161,11 +161,15 @@ print "
|
||||
<p> Click error to take you to the error in the log.
|
||||
<PRE>
|
||||
";
|
||||
print foreach (@summary_output);
|
||||
foreach (@summary_output) {
|
||||
print;
|
||||
}
|
||||
print "</PRE>\n";
|
||||
|
||||
print "<H2>Build Error Log</H2>\n<pre>";
|
||||
print foreach (@log_output);
|
||||
foreach (@log_output) {
|
||||
print;
|
||||
}
|
||||
print
|
||||
"</PRE>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user