summaryrefslogtreecommitdiff
path: root/scripts/scan-pkgs.sh
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-12-17 15:10:18 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2013-12-17 15:10:18 +0100
commit0fc1d605ffc85952238ddda017f79158a36a0826 (patch)
treeb8a238ad02d2259aba4ec7ff374c38aa0e03f83b /scripts/scan-pkgs.sh
parent2f3dbff3a8283fd1307ec71b6e4d5c70e80f56dc (diff)
add gperf to tools, required for eglibc builds. do not ask the user to install it
Diffstat (limited to 'scripts/scan-pkgs.sh')
-rw-r--r--scripts/scan-pkgs.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh
index 4c201560a..c94d01138 100644
--- a/scripts/scan-pkgs.sh
+++ b/scripts/scan-pkgs.sh
@@ -97,14 +97,6 @@ if [[ -n $ADK_PACKAGE_LIBXFONT ]]; then
NEED_XMLTO="$NEED_XMLTO libXfont"
fi
-if [[ -n $ADK_PACKAGE_PACEMAKER_MGMTD ]]; then
- NEED_SWIG="$NEED_SWIG pacemaker-mgmtd"
-fi
-
-if [[ -n $ADK_PACKAGE_EGLIBC ]]; then
- NEED_GPERF="$NEED_GPERF eglibc"
-fi
-
if [[ -n $ADK_PACKAGE_FONT_BITSTREAM_100DPI ]]; then
NEED_MKFONTDIR="$NEED_MKFONTDIR font-bitstream-100dpi"
fi
@@ -246,20 +238,6 @@ if [[ -n $NEED_WWW ]]; then
fi
fi
-if [[ -n $NEED_SWIG ]]; then
- if ! which swig >/dev/null 2>&1; then
- echo >&2 You need swig to build $NEED_SWIG
- out=1
- fi
-fi
-
-if [[ -n $NEED_GPERF ]]; then
- if ! which gperf >/dev/null 2>&1; then
- echo >&2 You need gperf to build $NEED_GPERF
- out=1
- fi
-fi
-
if [[ -n $NEED_GXX ]]; then
if ! which g++ >/dev/null 2>&1; then
echo >&2 You need GNU c++ compiler to build $NEED_GXX