diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-07-26 09:33:16 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-07-26 09:33:16 +0000 |
commit | 727f529211b68cdde88b724c2c1112acbc076bf2 (patch) | |
tree | 71dcfbad48726a9e78701b214c03b0c25c52be86 /coreutils | |
parent | 342aea967fae1a9dc05e69bfd4e5a270ca76b638 (diff) | |
download | busybox-w32-727f529211b68cdde88b724c2c1112acbc076bf2.tar.gz busybox-w32-727f529211b68cdde88b724c2c1112acbc076bf2.tar.bz2 busybox-w32-727f529211b68cdde88b724c2c1112acbc076bf2.zip |
There should be only one instance of CONFIG_FEATURE_AUTOWIDTH
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/Config.in | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/coreutils/Config.in b/coreutils/Config.in index e23bb754c..3f1e714ef 100644 --- a/coreutils/Config.in +++ b/coreutils/Config.in | |||
@@ -576,14 +576,18 @@ config CONFIG_FEATURE_PRESERVE_HARDLINKS | |||
576 | Allow cp and mv to preserve hard links. | 576 | Allow cp and mv to preserve hard links. |
577 | 577 | ||
578 | comment "Common options for ls and more" | 578 | comment "Common options for ls and more" |
579 | depends on CONFIG_LS || CONFIG_MORE | 579 | depends on CONFIG_LS || CONFIG_MORE |
580 | 580 | ||
581 | config CONFIG_FEATURE_AUTOWIDTH | 581 | config CONFIG_FEATURE_AUTOWIDTH |
582 | bool " Calculate terminal & column widths" | 582 | bool " Calculate terminal & column widths" |
583 | default n | 583 | default y |
584 | depends on CONFIG_LS || CONFIG_MORE | 584 | depends on CONFIG_LS || CONFIG_MORE |
585 | help | 585 | help |
586 | Allow ls and more to calculate terminal and column widths. | 586 | This option allows utilities such as 'ls' and 'more' to determine the |
587 | width of the screen, which can allow them to display additional text | ||
588 | or avoid wrapping text onto the next line. If you leave this | ||
589 | disabled, your utilities will be especially primitive and will be | ||
590 | unable to determine the current screen width. | ||
587 | 591 | ||
588 | comment "Common options for df, du, ls" | 592 | comment "Common options for df, du, ls" |
589 | depends on CONFIG_DF || CONFIG_DU || CONFIG_LS | 593 | depends on CONFIG_DF || CONFIG_DU || CONFIG_LS |