aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-12-14 09:35:58 -0600
committerJack Nagel2013-12-14 09:35:58 -0600
commit38ab6dbd7ecbe733dbfbbb4d4d281e89a5ce7967 (patch)
treeeff611fc999c971a36de8fc2ccc6b93211e076a5 /Library
parentc995562a86bad070dc6f22aa532ff1bc7fe6abfe (diff)
downloadhomebrew-38ab6dbd7ecbe733dbfbbb4d4d281e89a5ce7967.tar.bz2
keg: add debug output to install name machinery
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/keg_fix_install_names.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Homebrew/keg_fix_install_names.rb b/Library/Homebrew/keg_fix_install_names.rb
index 306645406..600e1498b 100644
--- a/Library/Homebrew/keg_fix_install_names.rb
+++ b/Library/Homebrew/keg_fix_install_names.rb
@@ -54,10 +54,12 @@ class Keg
end
def change_dylib_id(id, file)
+ puts "Changing dylib ID in #{file} 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} from #{old} to #{new}" if ARGV.debug?
install_name_tool("-change", old, new, file)
end