patch by srowe in Bug 359 to fix fgrep aliasing
diff --git a/findutils/Config.in b/findutils/Config.in
index 3143bd4..10dc72e 100644
--- a/findutils/Config.in
+++ b/findutils/Config.in
@@ -73,13 +73,13 @@
and various repetition operators.
config CONFIG_FEATURE_GREP_FGREP_ALIAS
- bool " Alias fgrep to grep -f"
+ bool " Alias fgrep to grep -F"
default y
depends on CONFIG_GREP
help
- fgrep sees the search pattern as a normal string rather than
+ fgrep sees the search pattern as a normal string rather than
regular expressions.
- grep -f is always builtin, this just creates the fgrep alias.
+ grep -F is always builtin, this just creates the fgrep alias.
config CONFIG_FEATURE_GREP_CONTEXT
bool " Enable before and after context flags (-A, -B and -C)"