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
commitf458fa9e9aafe01c86054209b5f7da3f80cf9501 (patch)
tree76e78023272088465688beff280576f02690b5d6 /Library
parentc31512fe33e060c7bdfcadedbc32d677eef24f76 (diff)
downloadbrew-f458fa9e9aafe01c86054209b5f7da3f80cf9501.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