Older version of perl cannot have foreach loop on same line as print.

This commit is contained in:
slamm%netscape.com 1999-03-18 02:53:54 +00:00
parent cb6f23e117
commit e1a2b86f4a

View File

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