diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-06-01 03:52:22 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-06-01 04:16:23 +0200 |
commit | abf5f6ea2ab993b266baf4dfd52635ead2b00829 (patch) | |
tree | 7c80907cd205bef6404b43116b4b435f84687ee0 /tests/md5.sh | |
parent | 03ce421c1361e4ce79468de8269ad51ba2ae4c16 (diff) | |
download | ffmpeg-abf5f6ea2ab993b266baf4dfd52635ead2b00829.tar.gz |
fate: try to fix 3rd md5 implementation
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'tests/md5.sh')
-rw-r--r-- | tests/md5.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/md5.sh b/tests/md5.sh index 4b95127701..e21e5c37dd 100644 --- a/tests/md5.sh +++ b/tests/md5.sh @@ -5,7 +5,7 @@ if [ X"$(echo | md5sum 2> /dev/null)" != X ]; then elif [ X"$(echo | command md5 2> /dev/null)" != X ]; then do_md5sum() { command md5 $1 | sed 's#MD5 (\(.*\)) = \(.*\)#\2 *\1#'; } elif [ -x /sbin/md5 ]; then - do_md5sum() { /sbin/md5 -r $1 | sed 's# \**\./# *./#'; } + do_md5sum() { /sbin/md5 -r $1 | sed 's/\([0-9a-f]\) [ *]*/\1 */'; } elif openssl version >/dev/null 2>&1; then do_md5sum() { openssl md5 $1 | sed 's/MD5(\(.*\))= \(.*\)/\2 *\1/'; } else |