Skip to content

Commit e9b341a

Browse files
committed
configure: Remove md5 probing logic
This is all not used any more
1 parent 5eeef8b commit e9b341a

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

configure

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -820,20 +820,6 @@ if [ $(echo $python_version | grep -c '^Python 2\.7') -ne 1 ]; then
820820
err "Found $python_version, but Python 2.7 is required"
821821
fi
822822

823-
# Use `md5sum` on GNU platforms, or `md5 -q` on BSD
824-
probe CFG_MD5 md5
825-
probe CFG_MD5SUM md5sum
826-
if [ -n "$CFG_MD5" ]
827-
then
828-
CFG_HASH_COMMAND="$CFG_MD5 -q | cut -c 1-8"
829-
elif [ -n "$CFG_MD5SUM" ]
830-
then
831-
CFG_HASH_COMMAND="$CFG_MD5SUM | cut -c 1-8"
832-
else
833-
err 'could not find one of: md5 md5sum'
834-
fi
835-
putvar CFG_HASH_COMMAND
836-
837823
probe CFG_CLANG clang++
838824
probe CFG_CCACHE ccache
839825
probe CFG_GCC gcc

0 commit comments

Comments
 (0)