lib / prepare-host: fix quoting inconsistency

This commit is contained in:
Rolf Leggewie
2025-07-20 10:20:22 +08:00
committed by Igor
parent f72bd55b12
commit c2a9fff520

View File

@@ -270,7 +270,7 @@ function adaptative_prepare_host_dependencies() {
fi fi
if [[ "${wanted_arch}" != "amd64" ]]; then 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 fi
if [[ "${KERNEL_COMPILER}" == "clang" ]]; then if [[ "${KERNEL_COMPILER}" == "clang" ]]; then