diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-03-17 14:47:17 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-03-17 14:47:17 +0100 |
commit | 3c8b938f0391f377d91a62236dfe4a3744f81185 (patch) | |
tree | dd2bc81b664c7a134f0c35e97dcfcedcbcfa853a /scripts | |
parent | a5ad35245264679bda4e2747c6e8c0e77eda7fe3 (diff) | |
parent | cc6ab14ecc81731224aaff814414c55c3ced195b (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/scan-tools.sh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/scripts/scan-tools.sh b/scripts/scan-tools.sh index 8d1fa0022..89e368d8b 100644 --- a/scripts/scan-tools.sh +++ b/scripts/scan-tools.sh @@ -44,7 +44,9 @@ MirBSD) ;; CYG*) echo "Building OpenADK on $os needs a small registry change." - echo 'See http://www.cygwin.com/1.7/cygwin-ug-net/using-specialnames.html' + echo 'http://cygwin.com/cygwin-ug-net/using-specialnames.html' + echo "You can ignore this message, when you already done the change" + sleep 3 ;; NetBSD) # supported with no extra quirks at the moment @@ -226,6 +228,12 @@ if ! which perl >/dev/null 2>&1; then out=1 fi +if ! which m4 >/dev/null 2>&1; then + echo "You must install m4 (macro processor) to continue." + echo + out=1 +fi + cd $topdir rm -rf tmp |