Merge pull request #5266 from antonlacon/oe-init

init: stop checking for OPENELEC_ARCH
This commit is contained in:
CvH 2021-08-11 13:23:45 +02:00 committed by GitHub
commit b30f709a56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -263,7 +263,7 @@ mount_sysroot() {
get_project_arch() {
if [ -f ${1}/etc/os-release ]; then
. ${1}/etc/os-release
echo "${OPENELEC_ARCH:-${LIBREELEC_ARCH}}"
echo "${LIBREELEC_ARCH}"
fi
}