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

git-svn-id: svn://10.0.0.236/trunk@24289 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
slamm%netscape.com
1999-03-18 02:53:54 +00:00
parent f05bd48ddd
commit 6bae52d41b

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>