mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
buildsystem: recursive unpack & build is only needed by sequential builds
This commit is contained in:
@@ -63,9 +63,12 @@ case "${TARGET}" in
|
||||
"init") _pkg_depends="${PKG_DEPENDS_INIT}";;
|
||||
"bootstrap") _pkg_depends="${PKG_DEPENDS_BOOTSTRAP}";;
|
||||
esac
|
||||
for p in ${_pkg_depends}; do
|
||||
${SCRIPTS}/build "${p}" "${PARENT_PKG}"
|
||||
done
|
||||
|
||||
if is_sequential_build; then
|
||||
for p in ${_pkg_depends}; do
|
||||
${SCRIPTS}/build "${p}" "${PARENT_PKG}"
|
||||
done
|
||||
fi
|
||||
|
||||
# virtual packages are not built as they only contain dependencies, so dont go further here
|
||||
if [ "${PKG_SECTION}" = "virtual" ]; then
|
||||
|
||||
Reference in New Issue
Block a user