summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-03-10 18:29:50 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-03-10 18:29:50 +0100
commitc0011b3b7074f8b47cbec36177eff42b18871d4d (patch)
tree8bedce53f4bee4d288fdca28352fb6bff85dfc7f /Makefile
parente04d6dc7eff54a2b851b65dd6cbcc78b8f573f64 (diff)
parent3d2e9517d920b88abde391b59ca0069351be3a87 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3b2d8850f..fa7faa6bb 100644
--- a/Makefile
+++ b/Makefile
@@ -166,11 +166,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 \