mirror of
https://github.com/opnsense/tools.git
synced 2026-06-09 08:55:26 -04:00
build/plugins: cannot build plugins on ARM as their deps are disabled
This commit is contained in:
parent
24b8819388
commit
c78ea52a5e
1 changed files with 5 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue