keg: add debug output to install name machinery
This commit is contained in:
parent
c31512fe33
commit
f458fa9e9a
@ -54,10 +54,12 @@ class Keg
|
|||||||
end
|
end
|
||||||
|
|
||||||
def change_dylib_id(id, file)
|
def change_dylib_id(id, file)
|
||||||
|
puts "Changing dylib ID in #{file} to #{id}" if ARGV.debug?
|
||||||
install_name_tool("-id", id, file)
|
install_name_tool("-id", id, file)
|
||||||
end
|
end
|
||||||
|
|
||||||
def change_install_name(old, new, file)
|
def change_install_name(old, new, file)
|
||||||
|
puts "Changing install name in #{file} from #{old} to #{new}" if ARGV.debug?
|
||||||
install_name_tool("-change", old, new, file)
|
install_name_tool("-change", old, new, file)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user