From f057e4a2dc1d6d2db4ec7750a43054fe15a1c71e Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 4 Oct 2013 18:42:48 +0200 Subject: use gettext-tiny instead of gettext --- scripts/scan-pkgs.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'scripts/scan-pkgs.sh') diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh index f794a8c37..9a595ac5e 100644 --- a/scripts/scan-pkgs.sh +++ b/scripts/scan-pkgs.sh @@ -73,6 +73,10 @@ if [[ -n $ADK_PACKAGE_GPSD ]]; then NEED_PYTHON="$NEED_PYTHON gpsd" fi +if [[ -n $ADK_PACKAGE_LIBVPX ]]; then + NEED_YASM="$NEED_YASM libvpx" +fi + if [[ -n $ADK_PACKAGE_FIREFOX ]]; then NEED_YASM="$NEED_YASM firefox" NEED_LIBIDL="$NEED_LIBIDL firefox" -- cgit v1.2.3 From 202363dab62195e0c4562758d3f356d84ad64fdf Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sat, 5 Oct 2013 08:58:16 +0200 Subject: ony check for yasm on x86 target --- scripts/scan-pkgs.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'scripts/scan-pkgs.sh') diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh index 9a595ac5e..dbce88a86 100644 --- a/scripts/scan-pkgs.sh +++ b/scripts/scan-pkgs.sh @@ -443,10 +443,12 @@ if [[ -n $NEED_FLEX ]]; then fi fi -if [[ -n $NEED_YASM ]]; then - if ! which yasm >/dev/null 2>&1; then - echo >&2 You need yasm to build $NEED_YASM - out=1 +if [[ -n $ADK_LINUX_X86 ]]; then + if [[ -n $NEED_YASM ]]; then + if ! which yasm >/dev/null 2>&1; then + echo >&2 You need yasm to build $NEED_YASM + out=1 + fi fi fi -- cgit v1.2.3