diff options
author | Denys Vlasenko | 2010-01-13 18:55:37 +0100 |
---|---|---|
committer | Denys Vlasenko | 2010-01-13 18:55:37 +0100 |
commit | c041e239dbc02b99ee9a5a86bed6dc859ff956db (patch) | |
tree | 80223bf1b9f04099d07b62c819a9e5c0cc72bd7b /coreutils/Config.in | |
parent | 85d286efc8578d6b11eaf9ffee3edf3717530a23 (diff) | |
download | busybox-c041e239dbc02b99ee9a5a86bed6dc859ff956db.zip busybox-c041e239dbc02b99ee9a5a86bed6dc859ff956db.tar.gz |
fix configure sha256sum problem. Closes bug 895
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/Config.in')
-rw-r--r-- | coreutils/Config.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/Config.in b/coreutils/Config.in index fa35241..49e2859 100644 --- a/coreutils/Config.in +++ b/coreutils/Config.in @@ -846,13 +846,13 @@ config FEATURE_HUMAN_READABLE help Allow df, du, and ls to have human readable output. -comment "Common options for md5sum, sha1sum" - depends on MD5SUM || SHA1SUM +comment "Common options for md5sum, sha1sum, sha256sum, sha512sum" + depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM config FEATURE_MD5_SHA1_SUM_CHECK bool "Enable -c, -s and -w options" default n - depends on MD5SUM || SHA1SUM + depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM help Enabling the -c options allows files to be checked against pre-calculated hash values. |