aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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