summaryrefslogtreecommitdiff
path: root/tests/md5.sh
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-06-01 03:52:22 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-06-01 04:16:23 +0200
commitabf5f6ea2ab993b266baf4dfd52635ead2b00829 (patch)
tree7c80907cd205bef6404b43116b4b435f84687ee0 /tests/md5.sh
parent03ce421c1361e4ce79468de8269ad51ba2ae4c16 (diff)
downloadffmpeg-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.sh2
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