diff options
author | Mans Rullgard <mans@mansr.com> | 2012-05-30 03:31:16 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-05-30 07:52:35 +0100 |
commit | 00c78a0a151ce6a0c277c1d6736517759ae77aae (patch) | |
tree | 1d3a2d51f99f5c4365eb694d949355f46bde42d8 /tests/md5.sh | |
parent | 43b50e62c430adca04d26901b3c957fd9ea0e453 (diff) | |
download | ffmpeg-00c78a0a151ce6a0c277c1d6736517759ae77aae.tar.gz |
fate: fix md5sum replacement on some systems
On systems where the 'md5' command is used, there is a conflict
with the md5() shell function in fate-run.sh. Using the 'command'
keyword bypasses the shell function for correct behaviour.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'tests/md5.sh')
-rw-r--r-- | tests/md5.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/md5.sh b/tests/md5.sh index 16b0281c00..4b95127701 100644 --- a/tests/md5.sh +++ b/tests/md5.sh @@ -2,8 +2,8 @@ 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 $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 |