Skip to content

Commit 2c91ce9

Browse files
committed
Merge tag 'coccinelle-6.2' of git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux
Pull coccicheck update from Julia Lawall: "Modernize use of grep in coccicheck: Use 'grep -E' instead of 'egrep'" * tag 'coccinelle-6.2' of git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux: scripts: coccicheck: use "grep -E" instead of "egrep"
2 parents 51094a2 + 2d63e6a commit 2c91ce9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/coccicheck

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ FLAGS="--very-quiet"
4747
# inspected there.
4848
#
4949
# --profile will not output if --very-quiet is used, so avoid it.
50-
echo $SPFLAGS | egrep -e "--profile|--show-trying" 2>&1 > /dev/null
50+
echo $SPFLAGS | grep -E -e "--profile|--show-trying" 2>&1 > /dev/null
5151
if [ $? -eq 0 ]; then
5252
FLAGS="--quiet"
5353
fi

0 commit comments

Comments
 (0)