diff options
author | Rob Landley <rob@landley.net> | 2006-02-06 02:49:45 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-02-06 02:49:45 +0000 |
commit | 30a6bba65f7f565aecc0904c42af8de50ff4c97c (patch) | |
tree | 752249cde75e0877173b29b8ad2b6aa7eaf92010 | |
parent | ba9c4d1f892d102f0384a52a0be370dd184ea1c2 (diff) | |
download | busybox-w32-30a6bba65f7f565aecc0904c42af8de50ff4c97c.tar.gz busybox-w32-30a6bba65f7f565aecc0904c42af8de50ff4c97c.tar.bz2 busybox-w32-30a6bba65f7f565aecc0904c42af8de50ff4c97c.zip |
Bug 677: there are apparently still people using telnet.
-rw-r--r-- | coreutils/Config.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/coreutils/Config.in b/coreutils/Config.in index 0ee5e9dbd..ffdc11ced 100644 --- a/coreutils/Config.in +++ b/coreutils/Config.in | |||
@@ -654,19 +654,19 @@ config CONFIG_FEATURE_PRESERVE_HARDLINKS | |||
654 | help | 654 | help |
655 | Allow cp and mv to preserve hard links. | 655 | Allow cp and mv to preserve hard links. |
656 | 656 | ||
657 | comment "Common options for ls and more" | 657 | comment "Common options for ls, more and telnet" |
658 | depends on CONFIG_LS || CONFIG_MORE | 658 | depends on CONFIG_LS || CONFIG_MORE || CONFIG_TELNET |
659 | 659 | ||
660 | config CONFIG_FEATURE_AUTOWIDTH | 660 | config CONFIG_FEATURE_AUTOWIDTH |
661 | bool " Calculate terminal & column widths" | 661 | bool " Calculate terminal & column widths" |
662 | default y | 662 | default y |
663 | depends on CONFIG_LS || CONFIG_MORE | 663 | depends on CONFIG_LS || CONFIG_MORE || CONFIG_TELNET |
664 | help | 664 | help |
665 | This option allows utilities such as 'ls' and 'more' to determine the | 665 | This option allows utilities such as 'ls', 'more' and 'telnet' |
666 | width of the screen, which can allow them to display additional text | 666 | to determine the width of the screen, which can allow them to |
667 | or avoid wrapping text onto the next line. If you leave this | 667 | display additional text or avoid wrapping text onto the next line. |
668 | disabled, your utilities will be especially primitive and will be | 668 | If you leave this disabled, your utilities will be especially |
669 | unable to determine the current screen width. | 669 | primitive and will be unable to determine the current screen width. |
670 | 670 | ||
671 | comment "Common options for df, du, ls" | 671 | comment "Common options for df, du, ls" |
672 | depends on CONFIG_DF || CONFIG_DU || CONFIG_LS | 672 | depends on CONFIG_DF || CONFIG_DU || CONFIG_LS |