summaryrefslogtreecommitdiff
path: root/ffmpeg1/tests/md5.sh
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2013-09-05 17:55:35 +0100
committerTim Redfern <tim@eclectronics.org>2013-09-05 17:55:35 +0100
commit741fb4b9e135cfb161a749db88713229038577bb (patch)
tree08bc9925659cbcac45162bacf31dc6336d4f60b4 /ffmpeg1/tests/md5.sh
parenta2e1bf3495b7bfefdaedb8fc737e969ab06df079 (diff)
making act segmenter
Diffstat (limited to 'ffmpeg1/tests/md5.sh')
-rw-r--r--ffmpeg1/tests/md5.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/ffmpeg1/tests/md5.sh b/ffmpeg1/tests/md5.sh
deleted file mode 100644
index 5e2528c..0000000
--- a/ffmpeg1/tests/md5.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-# 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/\([0-9a-f]\) [ *]*/\1 */'; }
-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