[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20130122133434.2543274.86646.stgit@fsdevel3>
Date: Tue, 22 Jan 2013 14:34:34 +0100
From: Bernd Schubert <bernd.schubert@...m.fraunhofer.de>
To: linux-kernel@...r.kernel.org
Cc: Julia Lawall <Julia.Lawall@...6.fr>,
Nicolas Palix <nicolas.palix@...g.fr>, cocci@...teme.lip6.fr
Subject: [PATCH 1/2] coccicheck: Allow the user to give a VERBOSE= argument
Simply running "make coccicheck" returns very verbose output and warnings
might not be noticed. Allow the user to set the verbosity level.
Signed-off-by: Bernd Schubert <bernd.schubert@...m.fraunhofer.de>
CC: Julia Lawall <Julia.Lawall@...6.fr>
CC: Nicolas Palix <nicolas.palix@...g.fr>
CC: cocci@...teme.lip6.fr
---
scripts/coccicheck | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/scripts/coccicheck b/scripts/coccicheck
index 1a49d1c..eab0b00 100755
--- a/scripts/coccicheck
+++ b/scripts/coccicheck
@@ -2,6 +2,12 @@
SPATCH="`which ${SPATCH:=spatch}`"
+if [ -z "$VERBOSE" ] ; then
+ RUN_VERBOSE=0
+else
+ RUN_VERBOSE=$VERBOSE
+fi
+
if [ "$C" = "1" -o "$C" = "2" ]; then
ONLINE=1
@@ -55,7 +61,7 @@ coccinelle () {
#
# $SPATCH -D $MODE $FLAGS -parse_cocci $COCCI $OPT > /dev/null
- if [ "$ONLINE" = "0" ] ; then
+ if [ "$RUN_VERBOSE" != "0" ] ; then
FILE=`echo $COCCI | sed "s|$srctree/||"`
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists