aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-04-04 22:02:48 -0500
committerJack Nagel2014-04-04 22:02:48 -0500
commitdc3691eccdae4899aeac617e5d705fd1cc0fbfb6 (patch)
tree79fd21cfa1bf5c1f25bf66b22a0b2336ac172c26 /Library
parent89692b34a8b5aec9df399d426ac14de72e6ac5ca (diff)
downloadbrew-dc3691eccdae4899aeac617e5d705fd1cc0fbfb6.tar.bz2
Clean up some concatentation inside interpolation
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/extend/ENV/shared.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/ENV/shared.rb b/Library/Homebrew/extend/ENV/shared.rb
index fec709ffb..30a3d232f 100644
--- a/Library/Homebrew/extend/ENV/shared.rb
+++ b/Library/Homebrew/extend/ENV/shared.rb
@@ -182,7 +182,7 @@ module SharedEnvExtension
def ld64
ld64 = Formula.factory('ld64')
self['LD'] = ld64.bin/'ld'
- append "LDFLAGS", "-B#{ld64.bin.to_s+"/"}"
+ append "LDFLAGS", "-B#{ld64.bin}/"
end
def warn_about_non_apple_gcc(gcc)