summaryrefslogtreecommitdiff
path: root/package/busybox/config/findutils/Config.in
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2016-12-23 08:19:04 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2016-12-23 08:20:33 +0100
commit2df44ef167f084559dc3c19eb1660227f9bb564d (patch)
tree8f55566faae3c9dd1682c775cb65f705d697334c /package/busybox/config/findutils/Config.in
parenta66d31dbaf25149762431af40592d9e5ef3ee06b (diff)
busybox: update to 1.26.0
Diffstat (limited to 'package/busybox/config/findutils/Config.in')
-rw-r--r--package/busybox/config/findutils/Config.in20
1 files changed, 8 insertions, 12 deletions
diff --git a/package/busybox/config/findutils/Config.in b/package/busybox/config/findutils/Config.in
index 53af0387a..a9bb761b2 100644
--- a/package/busybox/config/findutils/Config.in
+++ b/package/busybox/config/findutils/Config.in
@@ -205,23 +205,19 @@ config BUSYBOX_GREP
help
grep is used to search files for a specified pattern.
-config BUSYBOX_FEATURE_GREP_EGREP_ALIAS
- bool "Enable extended regular expressions (egrep & grep -E)"
+config BUSYBOX_EGREP
+ bool "egrep"
+ depends on !BUSYBOX_DISABLE_GREP
default y
- depends on BUSYBOX_GREP
help
- Enabled support for extended regular expressions. Extended
- regular expressions allow for alternation (foo|bar), grouping,
- and various repetition operators.
+ Alias to "grep -E"
-config BUSYBOX_FEATURE_GREP_FGREP_ALIAS
- bool "Alias fgrep to grep -F"
+config BUSYBOX_FGREP
+ bool "fgrep"
+ depends on !BUSYBOX_DISABLE_GREP
default y
- depends on BUSYBOX_GREP
help
- fgrep sees the search pattern as a normal string rather than
- regular expressions.
- grep -F always works, this just creates the fgrep alias.
+ Alias to "grep -F"
config BUSYBOX_FEATURE_GREP_CONTEXT
bool "Enable before and after context flags (-A, -B and -C)"