diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-04-12 17:53:54 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-04-12 17:53:54 +0200 |
commit | c5496d3585bcab3c39f9b10f638ba0c94f5cda3f (patch) | |
tree | 51fc000e94784e89f34b5d7f5a2d1ac9f0295189 | |
parent | e31ca2e9b206a05263708a3c10fbaec920920ba8 (diff) | |
download | busybox-w32-c5496d3585bcab3c39f9b10f638ba0c94f5cda3f.tar.gz busybox-w32-c5496d3585bcab3c39f9b10f638ba0c94f5cda3f.tar.bz2 busybox-w32-c5496d3585bcab3c39f9b10f638ba0c94f5cda3f.zip |
grep: FEATURE_GREP_CONTEXT should be available for "fgrep only" too
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | findutils/grep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/findutils/grep.c b/findutils/grep.c index ec7605d85..261e563d5 100644 --- a/findutils/grep.c +++ b/findutils/grep.c | |||
@@ -39,7 +39,7 @@ | |||
39 | //config:config FEATURE_GREP_CONTEXT | 39 | //config:config FEATURE_GREP_CONTEXT |
40 | //config: bool "Enable before and after context flags (-A, -B and -C)" | 40 | //config: bool "Enable before and after context flags (-A, -B and -C)" |
41 | //config: default y | 41 | //config: default y |
42 | //config: depends on GREP || EGREP | 42 | //config: depends on GREP || EGREP || FGREP |
43 | //config: help | 43 | //config: help |
44 | //config: Print the specified number of leading (-B) and/or trailing (-A) | 44 | //config: Print the specified number of leading (-B) and/or trailing (-A) |
45 | //config: context surrounding our matching lines. | 45 | //config: context surrounding our matching lines. |