summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-03-06 18:03:05 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-03-06 18:03:05 +0100
commita61ee2fc565e1d826024801e0539a5d08165ea1a (patch)
treeb7c459d8d7847da941b5b77daf5239ffc0f21a37 /Makefile
parent8a45e26cfb92ab1738d107e7ed764c28b1184a71 (diff)
use grep instead of fgrep
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9959e3169..2e845f25f 100644
--- a/Makefile
+++ b/Makefile
@@ -170,11 +170,11 @@ prereq-noerror:
NO_ERROR=0
.prereq_done:
@-rm -rf .prereq_done
- @if ! bash --version 2>&1 | fgrep 'GNU bash' >/dev/null 2>&1; then \
+ @if ! bash --version 2>&1 | grep -F 'GNU bash' >/dev/null 2>&1; then \
echo "GNU bash needs to be installed."; \
exit 1; \
fi
- @if ! mksh -c 'echo $$KSH_VERSION' 2>&1 | fgrep 'MIRBSD' >/dev/null 2>&1; then \
+ @if ! mksh -c 'echo $$KSH_VERSION' 2>&1 | grep -F 'MIRBSD' >/dev/null 2>&1; then \
echo "MirBSD ksh (mksh) needs to be installed."; \
exit 1; \
else \