diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-15 17:53:57 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-15 17:53:57 +0000 |
commit | 6dc3a97aa76090cbdff05d123a98127b51506516 (patch) | |
tree | 4495252e40c2ee18e264f4e5b82f58bf3a8a4cd3 /contrib | |
parent | 179ea95d479fb310b78f88e82310068cc53d4cc5 (diff) | |
download | gcc-6dc3a97aa76090cbdff05d123a98127b51506516.tar.gz |
* warn_summary (stageNfilter): Update for recent changes in
bootstrap logic.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39045 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/ChangeLog | 5 | ||||
-rwxr-xr-x | contrib/warn_summary | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index ead56825c65..3f7aa2e6fd3 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -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. diff --git a/contrib/warn_summary b/contrib/warn_summary index 510c99ed8d8..4f2eefd31ee 100755 --- a/contrib/warn_summary +++ b/contrib/warn_summary @@ -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 } |