summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-02-12 10:21:41 -0800
committerAlex Crichton <alex@alexcrichton.com>2017-03-11 08:41:10 -0800
commitb326bd31e516953d6434096755900f6dee7b3e48 (patch)
tree7698fc5ff2e491aded131537c8ede9d727e565a7 /configure
parent3308bd54b2fa70080c523f7899140f335928ac83 (diff)
downloadrust-b326bd31e516953d6434096755900f6dee7b3e48.tar.gz
configure: Remove md5 probing logic
This is all not used any more
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure14
1 files changed, 0 insertions, 14 deletions
diff --git a/configure b/configure
index c084478b375..9c3c3769511 100755
--- a/configure
+++ b/configure
@@ -821,20 +821,6 @@ if [ $(echo $python_version | grep -c '^Python 2\.7') -ne 1 ]; then
err "Found $python_version, but Python 2.7 is required"
fi
-# Use `md5sum` on GNU platforms, or `md5 -q` on BSD
-probe CFG_MD5 md5
-probe CFG_MD5SUM md5sum
-if [ -n "$CFG_MD5" ]
-then
- CFG_HASH_COMMAND="$CFG_MD5 -q | cut -c 1-8"
-elif [ -n "$CFG_MD5SUM" ]
-then
- CFG_HASH_COMMAND="$CFG_MD5SUM | cut -c 1-8"
-else
- err 'could not find one of: md5 md5sum'
-fi
-putvar CFG_HASH_COMMAND
-
probe CFG_CLANG clang++
probe CFG_CCACHE ccache
probe CFG_GCC gcc