diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-03-28 16:07:18 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-03-28 16:07:18 +0200 |
commit | 8bee65a9cbd1905e356ff468a48e90608a08a8e6 (patch) | |
tree | afdb76c6fa9e0e91482680497f0f5c27c56a9d4b /Makefile | |
parent | 98c4842cbff9e4802092c5011feb0ecbb8e4881d (diff) | |
parent | bf5f8fc2eaded785753175367f7f1a52192c2d62 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -27,7 +27,6 @@ help: @echo ' menuconfig - Update current config utilising a menu based program' @echo ' (default when .config does not exist)' @echo ' oldconfig - Update current config utilising a provided .configs base' - @echo ' wconfig - Same as "oldconfig", but also writes out hidden symbols' @echo ' allmodconfig - New config selecting all packages as modules when possible' @echo ' allconfig - New config selecting all packages when possible' @echo ' allnoconfig - New config where all options are answered with no' @@ -86,9 +85,6 @@ config: .prereq_done oldconfig: .prereq_done @${GMAKE_INV} _config W=-o -wconfig: .prereq_done - @${GMAKE_INV} _config W=-A - download: .prereq_done @${GMAKE_INV} toolchain/download @${GMAKE_INV} package/download @@ -170,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 \ |