abuild: fix qemu CARCH

ddc6f42ddc broke this by using carch,
which is not defined to anything
This commit is contained in:
psykose 2023-04-15 19:36:22 +00:00
parent 2f2b5abcc3
commit d4411cf494
1 changed files with 1 additions and 1 deletions

View File

@ -2399,7 +2399,7 @@ rootbld_qemu_arch() {
case "$CBUILD_ARCH" in
arm*) qarch="arm" ;;
x86) qarch="i386" ;;
*) qarch="$carch" ;;
*) qarch="$CBUILD_ARCH" ;;
esac
echo "${qarch}"