summaryrefslogtreecommitdiff
path: root/scripts/scan-pkgs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/scan-pkgs.sh')
-rw-r--r--scripts/scan-pkgs.sh33
1 files changed, 0 insertions, 33 deletions
diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh
index 757ae4256..74e13ddf0 100644
--- a/scripts/scan-pkgs.sh
+++ b/scripts/scan-pkgs.sh
@@ -140,22 +140,10 @@ if [[ -n $ADK_PACKAGE_XKEYBOARD_CONFIG ]]; then
NEED_XKBCOMP="$NEED_XKBCOMP xkeyboard-config"
fi
-if [[ -n $ADK_COMPILE_AUTOCONF ]]; then
- NEED_M4="$NEED_M4 autoconf"
-fi
-
-if [[ -n $ADK_COMPILE_AUTOMAKE ]]; then
- NEED_AUTOCONF="$NEED_AUTOCONF automake"
-fi
-
if [[ -n $ADK_COMPILE_COROSYNC ]]; then
NEED_GROFF="$NEED_GROFF corosync"
fi
-if [[ -n $ADK_COMPILE_LIBTOOL ]]; then
- NEED_AUTOMAKE="$NEED_AUTOMAKE libtool"
-fi
-
if [[ -n $ADK_PACKAGE_SQUID ]]; then
NEED_GXX="$NEED_GXX squid"
fi
@@ -342,27 +330,6 @@ if [[ -n $NEED_MKFONTDIR ]]; then
fi
fi
-if [[ -n $NEED_M4 ]]; then
- if ! which m4 >/dev/null 2>&1; then
- echo >&2 You need GNU m4 to build $NEED_M4
- out=1
- fi
-fi
-
-if [[ -n $NEED_AUTOCONF ]]; then
- if ! which autoconf >/dev/null 2>&1; then
- echo >&2 You need autoconf to build $NEED_AUTOCONF
- out=1
- fi
-fi
-
-if [[ -n $NEED_AUTOMAKE ]]; then
- if ! which automake >/dev/null 2>&1; then
- echo >&2 You need automake to build $NEED_AUTOMAKE
- out=1
- fi
-fi
-
if [[ -n $NEED_INTL ]]; then
if ! which intltool-update >/dev/null 2>&1; then
echo >&2 You need intltool to build $NEED_INTL