v2.3.2: fixed symlink creation

This commit is contained in:
2025-11-19 13:47:34 +05:00
parent 458652d0c5
commit 3198f8905e
5 changed files with 8 additions and 5 deletions

View File

@@ -137,8 +137,8 @@ function build_dependency {
# creates symbolic link to each file in $OBJDIR/static_libs
for file in $DEP_STATIC_OUT_FILES; do
# doesnt return error if called not like this
f=$(realpath $file)
ln -sfv $f "$proj_root_dir/$OBJDIR/static_libs"
real_file=$(realpath $file)
ln -sfv "$real_file" "$proj_root_dir/$OBJDIR/static_libs/"
done
fi