diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-03-30 02:41:10 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-03-30 03:12:05 +0200 |
commit | ad7aff035517e0639c66f2003243c388450a86ac (patch) | |
tree | cc00bad633c1c7298b082f0939329dcf31741058 | |
parent | 5f019909c0e21e81646cdd43ef537e2e1404ccc4 (diff) | |
download | ffmpeg-ad7aff035517e0639c66f2003243c388450a86ac.tar.gz |
tests/fate/source-check: Use git grep in place of grep
grep -L is not posix, solaris default grep does not support it
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rwxr-xr-x | tests/fate/source-check.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fate/source-check.sh b/tests/fate/source-check.sh index f108d69c7b..5f3fd8960e 100755 --- a/tests/fate/source-check.sh +++ b/tests/fate/source-check.sh @@ -27,7 +27,7 @@ for f in `git ls-files | grep '\.h$'` ; do -e 's/_vaf_/_/' \ | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`" - grep -L "^#define $macro$" $f + git grep -L "^#define $macro$" $f done echo "Use of av_clip() where av_clip_uintp2() could be used:" |