From b0623ec9e02f81582297c8010ddb1f7fbe6eea35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20P=C3=B6tzsch?= Date: Fri, 27 Feb 2026 08:48:50 +0100 Subject: [PATCH] libs::openssl: fix host build of tools If the tools package is build for the host it is usually linked statically. This means the dependent openssl-tgt directory can be empty, producing an error on copy. Fix this be not using shell globs but the directory content itself as copy sources. --- recipes/libs/openssl.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/libs/openssl.yaml b/recipes/libs/openssl.yaml index d8b221e6..180e383e 100644 --- a/recipes/libs/openssl.yaml +++ b/recipes/libs/openssl.yaml @@ -640,7 +640,7 @@ multiPackage: installPackageBin "$1/install/" for d in "${!BOB_DEP_PATHS[@]}"; do if [[ $d == *-tgt ]]; then - cp -ar ${BOB_DEP_PATHS[$d]}/* . + cp -ar ${BOB_DEP_PATHS[$d]}/. . fi done provideTools: