mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 05:36:47 +00:00
buildsystem: unpack should recursively unpack, not build
This commit is contained in:
parent
b26a38279d
commit
e76f0a39c0
@ -53,11 +53,6 @@ if [ -f ${STAMP} ]; then
|
||||
rm -f ${STAMP}
|
||||
fi
|
||||
|
||||
if [ -n "${PKG_DEPENDS_UNPACK}" ]; then
|
||||
for p in ${PKG_DEPENDS_UNPACK}; do
|
||||
${SCRIPTS}/unpack "${p}" "${PARENT_PKG}"
|
||||
done
|
||||
fi
|
||||
${SCRIPTS}/unpack "${PKG_NAME}" "${PARENT_PKG}"
|
||||
|
||||
# build dependencies, only when PKG_DEPENDS_? is filled
|
||||
|
@ -21,6 +21,12 @@ pkg_lock_status "ACTIVE" "${PKG_NAME}" "unpack"
|
||||
|
||||
${SCRIPTS}/get "${PKG_NAME}"
|
||||
|
||||
if [ -n "${PKG_DEPENDS_UNPACK}" ]; then
|
||||
for p in ${PKG_DEPENDS_UNPACK}; do
|
||||
${SCRIPTS}/unpack "${p}" "${PARENT_PKG}"
|
||||
done
|
||||
fi
|
||||
|
||||
STAMP="${PKG_BUILD}/.libreelec-unpack"
|
||||
|
||||
mkdir -p ${BUILD}
|
||||
|
Loading…
x
Reference in New Issue
Block a user