summaryrefslogtreecommitdiff
path: root/scripts/scan-tools.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/scan-tools.sh')
-rw-r--r--scripts/scan-tools.sh14
1 files changed, 5 insertions, 9 deletions
diff --git a/scripts/scan-tools.sh b/scripts/scan-tools.sh
index 746901c18..743f316b0 100644
--- a/scripts/scan-tools.sh
+++ b/scripts/scan-tools.sh
@@ -5,10 +5,10 @@ shopt -s extglob
topdir=$(pwd)
opath=$PATH
out=0
-if [ -z $(which gmake) ];then
- makecmd=$(which make)
+if [ -z $(which gmake 2>/dev/null ) ];then
+ makecmd=$(which make 2>/dev/null )
else
- makecmd=$(which gmake)
+ makecmd=$(which gmake 2>/dev/null )
fi
if [[ $NO_ERROR != @(0|1) ]]; then
@@ -43,12 +43,8 @@ MirBSD)
# supported with no extra quirks at the moment
;;
CYG*)
- # mkdir /openadk
- # mount -b -s -o managed "C:/openadk" "/openadk"
- # cd /
- # git clone git+ssh://openadk.org/git/openadk.git
- echo "Building OpenADK on $os is needs a managed mount point."
- echo '"mount -b -s -o managed "C:/openadk" "/openadk"'
+ echo "Building OpenADK on $os needs a small registry change."
+ echo 'See http://www.cygwin.com/1.7/cygwin-ug-net/using-specialnames.html'
;;
NetBSD)
echo "Building OpenADK on $os is currently unsupported."