1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-09-16 08:36:51 +02: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

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