mirror of https://github.com/odrling/Aegisub
osx-fix-libs: fix relative symlinks with same name
This commit is contained in:
parent
169a74b3fe
commit
a55efa23aa
|
@ -103,6 +103,10 @@ def collectlibs(lib, masterlist, targetdir):
|
|||
|
||||
if os.path.islink(check):
|
||||
link_dst = os.readlink(check)
|
||||
if os.path.basename(check) == os.path.basename(link_dst):
|
||||
check = os.path.join(os.path.dirname(check), link_dst)
|
||||
continue
|
||||
|
||||
try:
|
||||
os.symlink(link_dst, target)
|
||||
except FileExistsError:
|
||||
|
|
Loading…
Reference in New Issue