From c2a9fff52016289c6cb9e1847ac0fa7b7349879f Mon Sep 17 00:00:00 2001 From: Rolf Leggewie Date: Sun, 20 Jul 2025 10:20:22 +0800 Subject: [PATCH] lib / prepare-host: fix quoting inconsistency --- lib/functions/host/prepare-host.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/functions/host/prepare-host.sh b/lib/functions/host/prepare-host.sh index 89ac9efd00..5ebedf06ef 100644 --- a/lib/functions/host/prepare-host.sh +++ b/lib/functions/host/prepare-host.sh @@ -270,7 +270,7 @@ function adaptative_prepare_host_dependencies() { fi if [[ "${wanted_arch}" != "amd64" ]]; then - host_dependencies+=(libc6-amd64-cross) # Support for running x86 binaries (under qemu on other arches) + host_dependencies+=("libc6-amd64-cross") # Support for running x86 binaries (under qemu on other arches) fi if [[ "${KERNEL_COMPILER}" == "clang" ]]; then