From c090a78fe0fefd8c55e92bb269349dc576b1f6f5 Mon Sep 17 00:00:00 2001 From: alalaw01 Date: Wed, 10 Dec 2014 11:46:08 +0000 Subject: [PATCH] check_GNU_style.sh "80 characters exceeded" error fix 2014-12-10 Mantas Mikaitis * contrib/check_GNU_style.sh (col): Got rid of cut operation from the pipe chain and instead added cut inside awk command. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@218575 138bc75d-0d04-0410-961f-82ee72b054a4 --- contrib/check_GNU_style.sh | 3 +-- gcc/ChangeLog | 5 +++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/contrib/check_GNU_style.sh b/contrib/check_GNU_style.sh index 5f901901306..aed90b4e3a5 100755 --- a/contrib/check_GNU_style.sh +++ b/contrib/check_GNU_style.sh @@ -86,8 +86,7 @@ col (){ shift 1 grep -nH '^+' $* \ | grep -v ':+++' \ - | cut -f 2 -d '+' \ - | awk '{ if (length ($0) > 80) print $0 }' \ + | awk -F':\\+' '{ if (length($2) > 80) print $0}' \ > $tmp if [ -s $tmp ]; then printf "\n$msg\n" diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 58045f5c0c7..a8d919802a7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2014-12-10 Mantas Mikaitis + + * contrib/check_GNU_style.sh (col): Got rid of cut operation + from the pipe chain and instead added cut inside awk command. + 2014-12-10 Richard Biener PR tree-optimization/64191 -- 2.11.4.GIT