]> git.sesse.net Git - ffmpeg/blobdiff - tests/md5.sh
fate: dependencies for vsynth tests
[ffmpeg] / tests / md5.sh
index 16b0281c007dc13a2fca1dff270f6a9b8d1d942c..0b382b1a5eef5f73c4816ff42c98022cfc1d5116 100644 (file)
@@ -1,9 +1,9 @@
 # try to find an md5 program
 
-if [ X"$(echo | md5sum 2> /dev/null)" != X ]; then
+if [ X"$(echo | md5sum -b 2> /dev/null)" != X ]; then
     do_md5sum() { md5sum -b $1; }
-elif [ X"$(echo | md5 2> /dev/null)" != X ]; then
-    do_md5sum() { md5 $1 | sed 's#MD5 (\(.*\)) = \(.*\)#\2 *\1#'; }
+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# \**\./# *./#'; }
 elif openssl version >/dev/null 2>&1; then