From f364a17dd165b398bd15470e93726bf6ca90be90 Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Wed, 14 Aug 2019 11:48:26 +1000 Subject: [PATCH] test: ppc64* qemu is qemu-system-ppc64 --- test/test-functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-functions b/test/test-functions index 58685526c2..47a4fa8111 100644 --- a/test/test-functions +++ b/test/test-functions @@ -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