diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-03-23 07:42:41 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-03-23 07:42:41 +0100 |
commit | e3871e103e6f9bf305c8ce2550afb8a23870fac1 (patch) | |
tree | 0f0e6b333d944444290a95ea3129e13a4215812c /scripts | |
parent | 5266f7d3302b67b349213c8870f8872e2fd1951c (diff) | |
parent | 3c8b938f0391f377d91a62236dfe4a3744f81185 (diff) |
Merge branch 'master' of git+ssh://wbx@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 |