summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-02-16 17:31:25 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2011-02-16 17:31:25 +0100
commitf4b95164315c8768eec732982500b1862edd3c33 (patch)
tree41e2800e9d27a0deb203586e36bf898ec309fd82 /scripts
parentd06602c868691e71ff83384f68190f05c0c349dc (diff)
fix wording, add bind dependencies
Diffstat (limited to 'scripts')
-rw-r--r--scripts/scan-pkgs.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh
index c92c6c107..948e8c0be 100644
--- a/scripts/scan-pkgs.sh
+++ b/scripts/scan-pkgs.sh
@@ -41,6 +41,9 @@ if [[ -n $ADK_NATIVE ]];then
if [[ -n $ADK_PACKAGE_WPA_SUPPLICANT_WITH_OPENSSL ]]; then
NEED_LIBSSLDEV="$NEED_LIBSSLDEV wpa_supplicant"
fi
+ if [[ -n $ADK_COMPILE_BIND ]]; then
+ NEED_LIBSSLDEV="$NEED_LIBSSLDEV bind"
+ fi
if [[ -n $ADK_PACKAGE_IW ]]; then
NEED_LIBNLDEV="$NEED_LIBNLDEV iw"
fi
@@ -305,14 +308,14 @@ fi
if [[ -n $NEED_FLEX ]]; then
if ! which flex >/dev/null 2>&1; then
- echo >&2 You need flex to to use $NEED_FLEX package
+ echo >&2 You need flex to build $NEED_FLEX
out=1
fi
fi
if [[ -n $NEED_XSLTPROC ]]; then
if ! which xsltproc >/dev/null 2>&1; then
- echo >&2 You need xsltproc to to use $NEED_XSLTPROC package
+ echo >&2 You need xsltproc to build $NEED_XSLTPROC
out=1
fi
fi
@@ -320,7 +323,7 @@ fi
if [[ -n $NEED_PYTHON ]]; then
if ! which python >/dev/null 2>&1; then
if ! test -x /usr/pkg/bin/python2.6 >/dev/null; then
- echo >&2 You need python to to use $NEED_PYTHON package
+ echo >&2 You need python to build $NEED_PYTHON
out=1
fi
fi