warn_summary (stageNfilter): Update for recent changes in bootstrap logic.

* warn_summary (stageNfilter): Update for recent changes in
	bootstrap logic.

From-SVN: r39045
This commit is contained in:
Kaveh R. Ghazi 2001-01-15 17:53:57 +00:00 committed by Kaveh Ghazi
parent da4ac6f859
commit c2b31703ba
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-01-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* warn_summary (stageNfilter): Update for recent changes in
bootstrap logic.
2001-01-14 Joseph S. Myers <jsm28@cam.ac.uk>
* texi2pod.pl: Require at least perl 5.6.0.

View File

@ -78,7 +78,7 @@ stageNfilter()
$AWK "/^Bootstrapping the compiler|^Building the C and C\+\+ compiler/{t=1} ; /stage$stageN/{t=0} ; {if(t==1)print}"
else
stageNminus1=`expr $stageN - 1`
$AWK "/stage$stageNminus1/{t=1} ; /stage$stageN/{t=0} ; {if(t==1)print}"
$AWK "/stage${stageNminus1}\//{t=1} ; /stage$stageN/{t=0} ; {if(t==1)print}"
fi
fi
}