mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-19 02:04:19 +03:00
tools: Fix deprecation warning in patcheck
GNU apparently deprecated their egrep alias, replace it with 'grep -E' to avoid getting flooded with deprecation warnings. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
a888975a3c
commit
50910c32c5
@ -9,7 +9,7 @@ if [ $# = 0 ]; then
|
||||
fi
|
||||
|
||||
GREP=grep
|
||||
EGREP=egrep
|
||||
EGREP='grep -E'
|
||||
TMP=patcheck.tmp
|
||||
OPT="-nH"
|
||||
#FILES=$($GREP '^+++' $* | sed 's/+++ //g')
|
||||
|
Loading…
x
Reference in New Issue
Block a user