diff options
author | Helmut Grohne <helmut@subdivi.de> | 2023-06-19 14:12:07 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2023-06-19 14:12:07 +0200 |
commit | fb5708a5518bbbde2f55847cb8f1cc0b433cb178 (patch) | |
tree | c642f0553bcf557f68b2fb4f95f060158721a8e8 | |
parent | 1c98a5b3b36f7e9abe1e62dcfe49cc0fa298379f (diff) | |
download | debvm-fb5708a5518bbbde2f55847cb8f1cc0b433cb178.tar.gz |
debvm-run: make shellcheck happy
Fixes: 1c98a5b3b36f ("bin/debvm-run: qemu (>> 1:8.0) provides symlinks for qemu-system-${debarch} as well as qemu-system-any")
-rwxr-xr-x | bin/debvm-run | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/debvm-run b/bin/debvm-run index 909d2a2..d09d8c7 100755 --- a/bin/debvm-run +++ b/bin/debvm-run @@ -274,7 +274,7 @@ set -- \ # This utilizes the QEMU Debian package symlink mapping that ensures that # calling qemu-system-${DEB_HOST_ARCH_CPU} will run the QEMU binary providing # the correct emulator for that CPU. -QEMU="qemu-system-$(dpkg-architecture --force --host-arch $KERNELARCH --query DEB_HOST_ARCH_CPU)" +QEMU="qemu-system-$(dpkg-architecture --force --host-arch "$KERNELARCH" --query DEB_HOST_ARCH_CPU)" CPU= MACHINE= MAX_SMP= |