mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
buildsystem: unpack should recursively unpack, not build
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user