The source project of this merge request has been removed.
functions: handle relative symlinks in the add_symlink function
-
functions: preserve relativity of symbolic links created withadd_symlinkUse
findin place ofreadlinkto return the symlink target just as it is and not the resolved absolute path. This keeps relative symlinks relative. -
functions: remove special handling of relative symbolic links fromadd_fileand simply useadd_symlinkNow that
add_symlinkpreserves relative symlinks, there is no need foradd_fileto copy the symlinks. All symbolic link handling is now left to theadd_symlinkfunction.