mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 11:39:47 +00:00
099294577c
The 'md5sum' command is used with the -b flag so the presence test must also use this flag. Signed-off-by: Mans Rullgard <mans@mansr.com>
14 lines
516 B
Bash
14 lines
516 B
Bash
# try to find an md5 program
|
|
|
|
if [ X"$(echo | md5sum -b 2> /dev/null)" != X ]; then
|
|
do_md5sum() { md5sum -b $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
|
|
do_md5sum() { openssl md5 $1 | sed 's/MD5(\(.*\))= \(.*\)/\2 *\1/'; }
|
|
else
|
|
do_md5sum() { echo No md5sum program found; }
|
|
fi
|