From c020bad2f53fb90644508e251519d0f59824b20c Mon Sep 17 00:00:00 2001 From: gerald Date: Sun, 22 Jan 2017 20:53:48 +0000 Subject: [PATCH] * warn_summary: Remove the -java option. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@244766 138bc75d-0d04-0410-961f-82ee72b054a4 --- contrib/ChangeLog | 4 ++++ contrib/warn_summary | 10 +++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 392a1eeb2aa..e568ecb2cc9 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2017-01-22 Gerald Pfeifer + + * warn_summary: Remove the -java option. + 2017-01-20 Gerald Pfeifer * update-copyright.py (LibJavaFilter): Remove. diff --git a/contrib/warn_summary b/contrib/warn_summary index 38e2c01ef83..ccdb33a1117 100755 --- a/contrib/warn_summary +++ b/contrib/warn_summary @@ -3,7 +3,7 @@ # This script parses the output of a gcc bootstrap when using warning # flags and determines various statistics. # -# usage: warn_summary [-llf] [-s stage] [-nosub|-ch|-cp|-f|-fortran|-java|-ada|-intl|-fixinc] +# usage: warn_summary [-llf] [-s stage] [-nosub|-ch|-cp|-f|-fortran|-ada|-intl|-fixinc] # [-pass|-wpass] [file(s)] # # -llf @@ -19,7 +19,7 @@ # # -nosub # Only show warnings from the gcc top level directory. -# -ch|-cp|-f|-fortran|-java|-ada|-intl|-fixinc +# -ch|-cp|-f|-fortran|-ada|-intl|-fixinc # Only show warnings from the specified gcc subdirectory. # These override each other so only the last one passed takes effect. # @@ -57,7 +57,7 @@ subdirectoryFilter() else if test "$filter" = nosub ; then # Omit all subdirectories. - egrep -v '/gcc/(ch|cp|f|fortran|java|ada|intl|fixinc)/' + egrep -v '/gcc/(ch|cp|f|fortran|ada|intl|fixinc)/' else # Pass through only subdir $filter. grep "/gcc/$filter/" @@ -136,7 +136,7 @@ s%^[^ ]*/\(lib[a-z23+-]*/\)%\1%;' # Start the main section. -usage="usage: `basename $0` [-llf] [-s stage] [-nosub|-ch|-cp|-f|-fortran|-java|-ada|-intl|-fixinc] [-pass|-wpass] [file(s)]" +usage="usage: `basename $0` [-llf] [-s stage] [-nosub|-ch|-cp|-f|-fortran|-ada|-intl|-fixinc] [-pass|-wpass] [file(s)]" stageN=3 tmpfile=/tmp/tmp-warn.$$ @@ -162,7 +162,7 @@ while test -n "$1" ; do -s) if test -z "$2"; then echo $usage 1>&2; exit 1; fi stageN="$2"; shift 2 ;; -s*) stageN="`expr $1 : '-s\(.*\)'`" ; shift ;; - -nosub|-ch|-cp|-f|-fortran|-java|-ada|-intl|-fixinc) filter="`expr $1 : '-\(.*\)'`" ; shift ;; + -nosub|-ch|-cp|-f|-fortran|-ada|-intl|-fixinc) filter="`expr $1 : '-\(.*\)'`" ; shift ;; -pass) pass=1 ; shift ;; -wpass) pass=w ; shift ;; -*) echo $usage 1>&2 ; exit 1 ;; -- 2.11.4.GIT