diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-13 18:55:37 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-13 18:55:37 +0100 |
commit | c041e239dbc02b99ee9a5a86bed6dc859ff956db (patch) | |
tree | 80223bf1b9f04099d07b62c819a9e5c0cc72bd7b /coreutils | |
parent | 85d286efc8578d6b11eaf9ffee3edf3717530a23 (diff) | |
download | busybox-w32-c041e239dbc02b99ee9a5a86bed6dc859ff956db.tar.gz busybox-w32-c041e239dbc02b99ee9a5a86bed6dc859ff956db.tar.bz2 busybox-w32-c041e239dbc02b99ee9a5a86bed6dc859ff956db.zip |
fix configure sha256sum problem. Closes bug 895
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-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 fa35241f4..49e285982 100644 --- a/coreutils/Config.in +++ b/coreutils/Config.in | |||
@@ -846,13 +846,13 @@ config FEATURE_HUMAN_READABLE | |||
846 | help | 846 | help |
847 | Allow df, du, and ls to have human readable output. | 847 | Allow df, du, and ls to have human readable output. |
848 | 848 | ||
849 | comment "Common options for md5sum, sha1sum" | 849 | comment "Common options for md5sum, sha1sum, sha256sum, sha512sum" |
850 | depends on MD5SUM || SHA1SUM | 850 | depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM |
851 | 851 | ||
852 | config FEATURE_MD5_SHA1_SUM_CHECK | 852 | config FEATURE_MD5_SHA1_SUM_CHECK |
853 | bool "Enable -c, -s and -w options" | 853 | bool "Enable -c, -s and -w options" |
854 | default n | 854 | default n |
855 | depends on MD5SUM || SHA1SUM | 855 | depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM |
856 | help | 856 | help |
857 | Enabling the -c options allows files to be checked | 857 | Enabling the -c options allows files to be checked |
858 | against pre-calculated hash values. | 858 | against pre-calculated hash values. |