From c78ea52a5e8b92d5062d79c2e08f23ed789960f7 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Mon, 24 Oct 2016 16:28:07 +0200 Subject: [PATCH] build/plugins: cannot build plugins on ARM as their deps are disabled --- build/plugins.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build/plugins.sh b/build/plugins.sh index 29a4cc4..8c94237 100644 --- a/build/plugins.sh +++ b/build/plugins.sh @@ -54,6 +54,11 @@ for PLUGIN in ${PLUGINS_LIST}; do continue fi + if [ ${PRODUCT_ARCH} = "armv6" ]; then + # no plugins for ARM + continue + fi + install_packages ${STAGEDIR} ${PLUGIN_DEPS} custom_packages ${STAGEDIR} ${PLUGINSDIR}/${PLUGIN} done