Skip to content
Snippets Groups Projects
Commit ac8dd9ae authored by FX Coudert's avatar FX Coudert
Browse files

Don't list duplicate dylibs for universal

parent 56ee2460
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ module MachOShim
def dynamically_linked_libraries(except: :none)
lcs = macho.dylib_load_commands.reject { |lc| lc.type == except }
lcs.map(&:name).map(&:to_s)
lcs.map(&:name).map(&:to_s).uniq
end
def dylib_id
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment