mirror of https://github.com/FFmpeg/FFmpeg.git
ffserver-regression.sh doesn't need anything else from regression-funcs.sh, and sourcing the entire file there breaks things. Originally committed as revision 22304 to svn://svn.ffmpeg.org/ffmpeg/trunkrelease/0.6
parent
ffabdaa14a
commit
fc8cb3988f
3 changed files with 13 additions and 10 deletions
@ -0,0 +1,11 @@ |
|||||||
|
# try to find an md5 program |
||||||
|
|
||||||
|
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 /sbin/md5 ]; then |
||||||
|
do_md5sum() { /sbin/md5 -r $1 | sed 's# \**\./# *./#'; } |
||||||
|
else |
||||||
|
do_md5sum() { echo No md5sum program found; } |
||||||
|
fi |
Loading…
Reference in new issue