blob: cd928f522799546a8506ebdeb022c6bbb1aaab50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
module CctoolsKeg
def install_name_tool(*args)
@require_install_name_tool = true
tool = MacOS.install_name_tool
system(tool, *args) || raise(ErrorDuringExecution.new(tool, args))
end
def require_install_name_tool?
!!@require_install_name_tool
end
def change_dylib_id(id, file)
puts "Changing dylib ID of #{file}\n from #{file.dylib_id}\n to #{id}" if ARGV.debug?
install_name_tool("-id", id, file)
end
def change_install_name(old, new, file)
puts "Changing install name in #{file}\n from #{old}\n to #{new}" if ARGV.debug?
install_name_tool("-change", old, new, file)
end
end
|