From 0e829974f56c1f528914a58736dc1357eff4af7b Mon Sep 17 00:00:00 2001 From: Michael Kostylev Date: Tue, 29 Sep 2009 19:49:04 +0000 Subject: Fix md5 program invocation for BSD. patch by Michael Kostylev, michael.kostylev gmail com Originally committed as revision 20086 to svn://svn.ffmpeg.org/ffmpeg/trunk --- tests/codec-regression.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/codec-regression.sh') diff --git a/tests/codec-regression.sh b/tests/codec-regression.sh index b0a541e207..fe97d3a04d 100755 --- a/tests/codec-regression.sh +++ b/tests/codec-regression.sh @@ -38,7 +38,7 @@ target_crcfile="$target_datadir/$this.crc" if [ X"`echo | md5sum 2> /dev/null`" != X ]; then do_md5sum() { md5sum -b $1; } elif [ X"`echo | md5 2> /dev/null`" != X ]; then - do_md5sum() { md5 -r $1 | sed 's# \**\./# *./#'; } + do_md5sum() { md5 $1 | sed 's#MD5 (\(.*\)) = \(.*\)#\2 *\1#'; } elif [ -x /sbin/md5 ]; then do_md5sum() { /sbin/md5 -r $1 | sed 's# \**\./# *./#'; } else -- cgit v1.2.3