diff options
Diffstat (limited to 'functions/architectures.sh')
-rwxr-xr-x | functions/architectures.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/functions/architectures.sh b/functions/architectures.sh index 747a78aa6..01c7d5b9d 100755 --- a/functions/architectures.sh +++ b/functions/architectures.sh @@ -15,7 +15,7 @@ Check_architectures () for ARCHITECTURE in ${ARCHITECTURES} do - if [ "$(echo ${LB_ARCHITECTURES} | grep ${ARCHITECTURE})" ] + if [ "$(echo ${LIVE_IMAGE_ARCHITECTURE} | grep ${ARCHITECTURE})" ] then VALID="true" break @@ -70,7 +70,7 @@ Check_crossarchitectures () ;; esac - if [ "${LB_ARCHITECTURES}" = "${LB_BOOTSTRAP_QEMU_ARCHITECTURES}" ] + if [ "${LIVE_IMAGE_ARCHITECTURE}" = "${LB_BOOTSTRAP_QEMU_ARCHITECTURES}" ] then if [ ! -e "${LB_BOOTSTRAP_QEMU_STATIC}" ] @@ -93,7 +93,7 @@ Check_crossarchitectures () Check_multiarchitectures () { - if [ "$(echo ${LB_ARCHITECTURES} | wc -w)" -gt "1" ] + if [ "$(echo ${LIVE_IMAGE_ARCHITECTURE} | wc -w)" -gt "1" ] then # First, only support multiarch on iso case "${LIVE_IMAGE_TYPE}" in |