aboutsummaryrefslogtreecommitdiff
path: root/findutils/xargs.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-06-06 04:14:28 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-06-06 04:14:28 +0200
commit2f32bf8be63f70125049402ba43101d8c6083d46 (patch)
tree8d01d287b58308bbb0bc6748c27357fae0a7aa12 /findutils/xargs.c
parentf0f94700610eba964441ce4a112134e03c76eb89 (diff)
downloadbusybox-2f32bf8be63f70125049402ba43101d8c6083d46.tar.gz
remove defconfig. Now "make defconfig" simply uses defaults from Config.in
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'findutils/xargs.c')
-rw-r--r--findutils/xargs.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/findutils/xargs.c b/findutils/xargs.c
index c55ac5724..7db374c4a 100644
--- a/findutils/xargs.c
+++ b/findutils/xargs.c
@@ -21,14 +21,14 @@
//config:
//config:config XARGS
//config: bool "xargs"
-//config: default n
+//config: default y
//config: help
//config: xargs is used to execute a specified command for
//config: every item from standard input.
//config:
//config:config FEATURE_XARGS_SUPPORT_CONFIRMATION
//config: bool "Enable -p: prompt and confirmation"
-//config: default n
+//config: default y
//config: depends on XARGS
//config: help
//config: Support -p: prompt the user whether to run each command
@@ -36,14 +36,14 @@
//config:
//config:config FEATURE_XARGS_SUPPORT_QUOTES
//config: bool "Enable single and double quotes and backslash"
-//config: default n
+//config: default y
//config: depends on XARGS
//config: help
//config: Support quoting in the input.
//config:
//config:config FEATURE_XARGS_SUPPORT_TERMOPT
//config: bool "Enable -x: exit if -s or -n is exceeded"
-//config: default n
+//config: default y
//config: depends on XARGS
//config: help
//config: Support -x: exit if the command size (see the -s or -n option)
@@ -51,7 +51,7 @@
//config:
//config:config FEATURE_XARGS_SUPPORT_ZERO_TERM
//config: bool "Enable -0: NUL-terminated input"
-//config: default n
+//config: default y
//config: depends on XARGS
//config: help
//config: Support -0: input items are terminated by a NUL character