diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-08-21 12:34:41 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-08-21 12:34:41 +0200 |
commit | f80eda0c17801058135f47e7f5ac3f6970e718ff (patch) | |
tree | b0881d47fe31009736e4836d8ae358893c00136e /scripts | |
parent | d07acf5eacf62cd8b5495f12e3b37427050270c9 (diff) |
cleanup eglibc/glibc Makefiles
- make it simpler and more equal
- add dependency to gperf needed for new config system
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/scan-tools.sh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/scripts/scan-tools.sh b/scripts/scan-tools.sh index 57df8b4c7..00aa92de3 100644 --- a/scripts/scan-tools.sh +++ b/scripts/scan-tools.sh @@ -42,8 +42,8 @@ FreeBSD) CYG*) # mkdir /openadk # mount -b -s -o managed "C:/openadk" "/openadk" - # cd /openadk - # svn co svn+ssh://waldemar-brodkorb.de/svn . + # 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"' ;; @@ -133,6 +133,12 @@ if ! which bison >/dev/null 2>&1; then out=1 fi +if ! which gperf >/dev/null 2>&1; then + echo You must install gperf to continue. + echo + out=1 +fi + if ! which tar >/dev/null 2>&1; then echo You must install GNU tar to continue. echo |