mirror of
https://github.com/mpv-player/mpv
synced 2024-12-22 23:02:37 +00:00
osxbundle: fix recursion termination
Prevents the binary from being copied over to the lib directory.
This commit is contained in:
parent
30fc1a42be
commit
0304c4f92d
@ -61,7 +61,7 @@ def lib_name(lib):
|
||||
def process_libraries(libs_dict, binary, processed = []):
|
||||
ls = leafs(libs_dict, processed)
|
||||
diff = set(ls) - set(processed)
|
||||
if diff == set():
|
||||
if diff == set([binary]):
|
||||
return
|
||||
|
||||
for src in diff:
|
||||
|
Loading…
Reference in New Issue
Block a user