summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-06-02 22:09:53 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-06-02 22:09:53 +0200
commit7c520cd3ad42f5d94a9888bb9b3db7c79b6fd94f (patch)
treec2cb6c76cdcc70b6ee1ca13f6ca209cc88d84305 /scripts
parentec275cae0293507fd03a7eeb972780fdbd5d40aa (diff)
fix regressions for allconfig alix1c glibc target
Diffstat (limited to 'scripts')
-rw-r--r--scripts/scan-pkgs.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh
index ee62ed33f..c40f7c43d 100644
--- a/scripts/scan-pkgs.sh
+++ b/scripts/scan-pkgs.sh
@@ -30,6 +30,10 @@ if [[ -n $ADK_PACKAGE_ALSA_UTILS ]]; then
NEED_XMLTO="$NEED_XMLTO alsa-utils"
fi
+if [[ -n $ADK_PACKAGE_XKEYBOARD_CONFIG ]]; then
+ NEED_XKBCOMP="$NEED_XKBCOMP xkeyboard-config"
+fi
+
if [[ -n $ADK_COMPILE_AVAHI ]]; then
NEED_PKGCONFIG="$NEED_PKGCONFIG avahi"
fi
@@ -63,6 +67,13 @@ if [[ -n $NEED_RUBY ]]; then
fi
fi
+if [[ -n $NEED_XKBCOMP ]]; then
+ if ! which xkbcomp >/dev/null 2>&1; then
+ echo >&2 You need xkbcomp to build $NEED_XKBCOMP
+ out=1
+ fi
+fi
+
if [[ -n $NEED_XMLTO ]]; then
if ! which xmlto >/dev/null 2>&1; then
echo >&2 You need xmlto to build $NEED_XMLTO