scripts: coccicheck: use "grep -E" instead of "egrep"
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 21 Sep 2022 09:13:41 +0000 (11:13 +0200)
committerJulia Lawall <Julia.Lawall@inria.fr>
Wed, 21 Sep 2022 19:23:56 +0000 (21:23 +0200)
The latest version of grep claims that egrep is now obsolete so the build
now contains warnings that look like:
        egrep: warning: egrep is obsolescent; using grep -E
fix this up by moving the vdso Makefile to use "grep -E" instead.

Cc: Julia Lawall <Julia.Lawall@inria.fr>
Cc: Nicolas Palix <nicolas.palix@imag.fr>
Cc: cocci@inria.fr
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
scripts/coccicheck

index caba0bff6da7ed2937237765a3241b77c9be8c22..2956fce8fa4fc82fd941e7785e742d526ad142c2 100755 (executable)
@@ -47,7 +47,7 @@ FLAGS="--very-quiet"
 # inspected there.
 #
 # --profile will not output if --very-quiet is used, so avoid it.
-echo $SPFLAGS | egrep -e "--profile|--show-trying" 2>&1 > /dev/null
+echo $SPFLAGS | grep -E -e "--profile|--show-trying" 2>&1 > /dev/null
 if [ $? -eq 0 ]; then
        FLAGS="--quiet"
 fi