diff options
author | Alexey Neyman <stilor@att.net> | 2018-04-29 15:04:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-29 15:04:23 -0700 |
commit | 5c24106d3b6ddb5229874a74e3cfe0059fa8ce8d (patch) | |
tree | 6ae4685ef53ec2b10593fe19fc1397bc8619f311 /config/global | |
parent | 51f0e7c649a84c66ce0111703498dc4466e35562 (diff) | |
parent | 74979fb19b2c7220dab4196c0d34e0c29b341b09 (diff) | |
download | crosstool-ng-5c24106d3b6ddb5229874a74e3cfe0059fa8ce8d.tar.gz crosstool-ng-5c24106d3b6ddb5229874a74e3cfe0059fa8ce8d.tar.bz2 crosstool-ng-5c24106d3b6ddb5229874a74e3cfe0059fa8ce8d.zip |
Merge pull request #953 from stilor/docker-testing2
Docker configuration for Gentoo + a bunch of fixes
Diffstat (limited to 'config/global')
-rw-r--r-- | config/global/download.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/global/download.in b/config/global/download.in index 89b05cea..57f42e6f 100644 --- a/config/global/download.in +++ b/config/global/download.in @@ -135,6 +135,7 @@ endif # USE_MIRROR config VERIFY_DOWNLOAD_DIGEST bool "Verify download digests (checksums)" default y + depends on CONFIGURE_has_sha512sum || CONFIGURE_has_sha256sum || CONFIGURE_has_sha1sum || CONFIGURE_has_md5sum if VERIFY_DOWNLOAD_DIGEST @@ -143,14 +144,18 @@ choice config VERIFY_DOWNLOAD_DIGEST_SHA512 bool "SHA-512" + depends on CONFIGURE_has_sha512sum config VERIFY_DOWNLOAD_DIGEST_SHA256 + depends on CONFIGURE_has_sha256sum bool "SHA-256" config VERIFY_DOWNLOAD_DIGEST_SHA1 + depends on CONFIGURE_has_sha1sum bool "SHA-1" config VERIFY_DOWNLOAD_DIGEST_MD5 + depends on CONFIGURE_has_md5sum bool "MD5" endchoice |