test: ppc64* qemu is qemu-system-ppc64

This commit is contained in:
Daniel Black 2019-08-14 11:48:26 +10:00 committed by Frantisek Sumsal
parent c8818aebab
commit f364a17dd1
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ function find_qemu_bin() {
[ "$QEMU_BIN" ] || QEMU_BIN=$(which -a qemu 2>/dev/null | grep '^/' -m1)
;;
ppc64*)
[ "$QEMU_BIN" ] || QEMU_BIN=$(which -a qemu-system-$ARCH 2>/dev/null | grep '^/' -m1)
[ "$QEMU_BIN" ] || QEMU_BIN=$(which -a qemu-system-ppc64 2>/dev/null | grep '^/' -m1)
;;
esac