diff options
author | Peter Foley <pefoley2@pefoley.com> | 2023-01-13 12:29:36 -0500 |
---|---|---|
committer | Julia Lawall <Julia.Lawall@inria.fr> | 2023-02-25 20:08:50 +0100 |
commit | 180da5ef84fba0a8ea06870a38d6d657d689944a (patch) | |
tree | 9bafc26177eed8582a4855f465e950f466980857 /scripts/coccicheck | |
parent | bab550371cb13fe7adc4105a57d0530565740fc6 (diff) | |
download | linux-stable-180da5ef84fba0a8ea06870a38d6d657d689944a.tar.gz linux-stable-180da5ef84fba0a8ea06870a38d6d657d689944a.tar.bz2 linux-stable-180da5ef84fba0a8ea06870a38d6d657d689944a.zip |
scripts: coccicheck: Avoid warning about spurious escape
e.g.
grep: warning: stray \ before -
Signed-off-by: Peter Foley <pefoley2@pefoley.com>
Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
Diffstat (limited to 'scripts/coccicheck')
-rwxr-xr-x | scripts/coccicheck | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/coccicheck b/scripts/coccicheck index 2956fce8fa4f..fb492f032c5f 100755 --- a/scripts/coccicheck +++ b/scripts/coccicheck @@ -18,7 +18,7 @@ fi SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}') USE_JOBS="no" -$SPATCH --help | grep "\-\-jobs" > /dev/null && USE_JOBS="yes" +$SPATCH --help | grep -e "--jobs" > /dev/null && USE_JOBS="yes" # The verbosity may be set by the environmental parameter V= # as for example with 'make V=1 coccicheck' |