diff options
author | Rob Landley | 2005-01-24 07:00:02 +0000 |
---|---|---|
committer | Rob Landley | 2005-01-24 07:00:02 +0000 |
commit | c0dedd05e81ac03a1793abd8cbfacf8c546e976f (patch) | |
tree | cd761995a05504c6d068ba33ddc62e86f9342e4c /coreutils/Config.in | |
parent | f4bb212d6ccc1a14724ba56fa57c3bc3ca66cf22 (diff) | |
download | busybox-c0dedd05e81ac03a1793abd8cbfacf8c546e976f.zip busybox-c0dedd05e81ac03a1793abd8cbfacf8c546e976f.tar.gz |
Sort rewrite to be SUSv3 compliant. New config option, updated help, and
a couple of infrastructure bits.
Diffstat (limited to 'coreutils/Config.in')
-rw-r--r-- | coreutils/Config.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/coreutils/Config.in b/coreutils/Config.in index e1f0516..4aff5ce 100644 --- a/coreutils/Config.in +++ b/coreutils/Config.in @@ -398,6 +398,18 @@ config CONFIG_SORT help sort is used to sort lines of text in specified files. +config CONFIG_SORT_BIG + bool " full SuSv3 compliant sort (Support -ktcsbdfiozgM)" + default y + depends on CONFIG_SORT + help + Without this, sort only supports -r, -u, and an integer version + of -n. Selecting this adds sort keys, floating point support, and + more. This adds a little over 3k to a nonstatic build on x86. + + The SuSv3 sort standard is available at: + http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html + config CONFIG_STTY bool "stty" default n |