1
0
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:
Link Mauve 2025-04-09 20:26:56 +02:00 committed by Michael Niedermayer
parent a888975a3c
commit 50910c32c5
No known key found for this signature in database
GPG Key ID: B18E8928B3948D64

View File

@ -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')