diff options
| author | Jack Nagel | 2014-04-13 13:53:46 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-04-13 14:57:11 -0500 | 
| commit | 8f9854f81f8064c1428a05efc8d9754e92e259a7 (patch) | |
| tree | c3029e78d2f926c5b9f80fd500fc177295dedd21 /Library/Homebrew/keg_fix_install_names.rb | |
| parent | 4e0786e2295a2977543455cf69ba47d79176f064 (diff) | |
| download | homebrew-8f9854f81f8064c1428a05efc8d9754e92e259a7.tar.bz2 | |
Always return a string from dylib_id_for
Diffstat (limited to 'Library/Homebrew/keg_fix_install_names.rb')
| -rw-r--r-- | Library/Homebrew/keg_fix_install_names.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/keg_fix_install_names.rb b/Library/Homebrew/keg_fix_install_names.rb index efc1bd48c..5feae1136 100644 --- a/Library/Homebrew/keg_fix_install_names.rb +++ b/Library/Homebrew/keg_fix_install_names.rb @@ -135,7 +135,7 @@ class Keg < Pathname      shortpath = HOMEBREW_PREFIX.join(relative_path)      if shortpath.exist? and not options[:keg_only] -      shortpath +      shortpath.to_s      else        "#{HOMEBREW_PREFIX}/opt/#{fname}/#{relative_path}"      end  | 
