From 4c057c1c9fbfd97727bf5623acf080c9bf7729cb Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Mon, 18 Dec 2023 00:25:00 +0100 Subject: [PATCH] Bugfixed dependency analysis --- scripts/deploy-win-ucrt64.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy-win-ucrt64.sh b/scripts/deploy-win-ucrt64.sh index 6c5b919a8..6b864150e 100644 --- a/scripts/deploy-win-ucrt64.sh +++ b/scripts/deploy-win-ucrt64.sh @@ -263,7 +263,7 @@ while [ "$new_libs" != "" ]; do echo "Copying binary installation partial $ucrt_inst/bin/$l -> $l" cp $ucrt_inst/bin/$l $l new_libs="$new_libs $l" - elif [ -e "${ucrt_vssdk}/$l" ] && ! [ -e "$target/$l" ]; then + elif [ -e "${ucrt_vssdk}/$l" ] && ! [ -e $l ]; then echo "Copying binary installation partial $ucrt_inst/bin/$l -> $l" cp "${ucrt_vssdk}/${l}" "$l" new_libs="$new_libs $l"