From 51e4ad1cd6003f1df2faf3fb37300330047ad1db Mon Sep 17 00:00:00 2001 From: Mathieu Tortuyaux Date: Tue, 27 May 2025 10:46:28 +0200 Subject: [PATCH] app-emulation/hv-daemons: use correct array syntax The array is not expanded without the brackets. Signed-off-by: Mathieu Tortuyaux --- .../app-emulation/hv-daemons/hv-daemons-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk_container/src/third_party/coreos-overlay/app-emulation/hv-daemons/hv-daemons-9999.ebuild b/sdk_container/src/third_party/coreos-overlay/app-emulation/hv-daemons/hv-daemons-9999.ebuild index 30efe5edc9..5cca1461c7 100644 --- a/sdk_container/src/third_party/coreos-overlay/app-emulation/hv-daemons/hv-daemons-9999.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/app-emulation/hv-daemons/hv-daemons-9999.ebuild @@ -20,7 +20,7 @@ src_compile() { src_install() { local -a HV_DAEMONS=(hv_vss_daemon hv_kvp_daemon hv_fcopy_daemon hv_fcopy_uio_daemon) local HV_DAEMON - for HV_DAEMON in "$HV_DAEMONS[@]" + for HV_DAEMON in "${HV_DAEMONS[@]}" do if [ -f "${S}/build/tools/hv/${HV_DAEMON}" ]; then dobin "${S}/build/tools/hv/${HV_DAEMON}"