diff options
author | Ron Yorston <rmy@pobox.com> | 2021-10-13 14:37:51 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2021-10-13 14:37:51 +0100 |
commit | 0ecf1aea459571b48dc68ddc2b7b9265740fa960 (patch) | |
tree | 491d6184a44b8b525a4ca35759d622aecd7f6344 /coreutils/Config.src | |
parent | 4859ddcb20616718efbea12c6bf8b27c469b68de (diff) | |
parent | aaf3d5ba74c5da97ff80b61f30cb8dd225d39096 (diff) | |
download | busybox-w32-0ecf1aea459571b48dc68ddc2b7b9265740fa960.tar.gz busybox-w32-0ecf1aea459571b48dc68ddc2b7b9265740fa960.tar.bz2 busybox-w32-0ecf1aea459571b48dc68ddc2b7b9265740fa960.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'coreutils/Config.src')
-rw-r--r-- | coreutils/Config.src | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/coreutils/Config.src b/coreutils/Config.src index 1bded03a6..6c9e47551 100644 --- a/coreutils/Config.src +++ b/coreutils/Config.src | |||
@@ -5,10 +5,6 @@ | |||
5 | 5 | ||
6 | menu "Coreutils" | 6 | menu "Coreutils" |
7 | 7 | ||
8 | INSERT | ||
9 | |||
10 | comment "Common options" | ||
11 | |||
12 | config FEATURE_VERBOSE | 8 | config FEATURE_VERBOSE |
13 | bool "Support verbose options (usually -v) for various applets" | 9 | bool "Support verbose options (usually -v) for various applets" |
14 | default y | 10 | default y |
@@ -17,6 +13,19 @@ config FEATURE_VERBOSE | |||
17 | Also enables long option (--verbose) if it exists. | 13 | Also enables long option (--verbose) if it exists. |
18 | Without this option, -v is accepted but ignored. | 14 | Without this option, -v is accepted but ignored. |
19 | 15 | ||
16 | comment "Common options for date and touch" | ||
17 | |||
18 | config FEATURE_TIMEZONE | ||
19 | bool "Allow timezone in dates" | ||
20 | default y | ||
21 | depends on DESKTOP | ||
22 | help | ||
23 | Permit the use of timezones when parsing user-provided data | ||
24 | strings, e.g. '1996-04-09 12:45:00 -0500'. | ||
25 | |||
26 | This requires support for the '%z' extension to strptime() which | ||
27 | may not be available in all implementations. | ||
28 | |||
20 | comment "Common options for cp and mv" | 29 | comment "Common options for cp and mv" |
21 | depends on CP || MV | 30 | depends on CP || MV |
22 | 31 | ||
@@ -37,4 +46,6 @@ config FEATURE_HUMAN_READABLE | |||
37 | help | 46 | help |
38 | Allow df, du, and ls to have human readable output. | 47 | Allow df, du, and ls to have human readable output. |
39 | 48 | ||
49 | INSERT | ||
50 | |||
40 | endmenu | 51 | endmenu |