aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-04-13 13:53:46 -0500
committerJack Nagel2014-04-13 14:57:11 -0500
commitdd9b253b44687f59ca43d7e23de6b185430377c9 (patch)
treecb1f2084995e432a538719aacb3bd26125de42ad /Library
parent2d155f2d41483869e5906177d04a8986c3c476a2 (diff)
downloadbrew-dd9b253b44687f59ca43d7e23de6b185430377c9.tar.bz2
Always return a string from dylib_id_for
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/keg_fix_install_names.rb2
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