diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb index 9fa97b49ad..10fb3b6545 100644 --- a/Library/Homebrew/utils.rb +++ b/Library/Homebrew/utils.rb @@ -362,7 +362,7 @@ module MacOS extend self def sdk_path(v=MacOS.version) # The path of the MacOSX SDK. if !MacOS.xctools_fucked? and File.directory? `xcode-select -print-path`.chomp - path = `#{locate('xcodebuild')} -version -sdk macosx#{v} Path 2>/dev/null`.chomp.chomp + path = `#{locate('xcodebuild')} -version -sdk macosx#{v} Path 2>/dev/null`.strip elsif File.directory? '/Developer/SDKs/MacOS#{v}.sdk' # the old default (or wild wild west style) path = "/Developer/SDKs/MacOS#{v}.sdk"