mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 13:46:49 +00:00
buildsystem: unpack should recursively unpack, not build
This commit is contained in:
parent
2d24b683fc
commit
3facec5d91
@ -53,11 +53,6 @@ if [ -f ${STAMP} ]; then
|
|||||||
rm -f ${STAMP}
|
rm -f ${STAMP}
|
||||||
fi
|
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}"
|
${SCRIPTS}/unpack "${PKG_NAME}" "${PARENT_PKG}"
|
||||||
|
|
||||||
# build dependencies, only when PKG_DEPENDS_? is filled
|
# build dependencies, only when PKG_DEPENDS_? is filled
|
||||||
|
@ -21,6 +21,12 @@ pkg_lock_status "ACTIVE" "${PKG_NAME}" "unpack"
|
|||||||
|
|
||||||
${SCRIPTS}/get "${PKG_NAME}"
|
${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"
|
STAMP="${PKG_BUILD}/.libreelec-unpack"
|
||||||
|
|
||||||
mkdir -p ${BUILD}
|
mkdir -p ${BUILD}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user