Bugfixed dependency analysis

This commit is contained in:
Matthias Koefferlein 2023-12-18 00:25:00 +01:00
parent 9efe4e9e71
commit 4c057c1c9f
1 changed files with 1 additions and 1 deletions

View File

@ -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"