diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-03-06 18:03:05 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-03-06 18:03:05 +0100 |
commit | a61ee2fc565e1d826024801e0539a5d08165ea1a (patch) | |
tree | b7c459d8d7847da941b5b77daf5239ffc0f21a37 /Makefile | |
parent | 8a45e26cfb92ab1738d107e7ed764c28b1184a71 (diff) |
use grep instead of fgrep
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 \ |