aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/extend/ENV/std.rb
diff options
context:
space:
mode:
authorJack Nagel2014-05-01 18:36:46 -0500
committerJack Nagel2014-05-01 18:36:46 -0500
commit6c6280fecded9bfc639e1792da3a3014550854c3 (patch)
tree11a84b60592ce97216508d756791588b35049f1d /Library/Homebrew/extend/ENV/std.rb
parent68280de7711b88ed6c053d88481c435be25abf5f (diff)
downloadhomebrew-6c6280fecded9bfc639e1792da3a3014550854c3.tar.bz2
Move xctoolchain_path to Xcode module, where it belongs
Diffstat (limited to 'Library/Homebrew/extend/ENV/std.rb')
-rw-r--r--Library/Homebrew/extend/ENV/std.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/Homebrew/extend/ENV/std.rb b/Library/Homebrew/extend/ENV/std.rb
index fb2741b53..663be4ff0 100644
--- a/Library/Homebrew/extend/ENV/std.rb
+++ b/Library/Homebrew/extend/ENV/std.rb
@@ -71,9 +71,7 @@ module Stdenv
macosxsdk MacOS.version
if MacOS::Xcode.without_clt?
- # Some tools (clang, etc.) are in the xctoolchain dir of Xcode
- append_path 'PATH', "#{MacOS.xctoolchain_path}/usr/bin" if MacOS.xctoolchain_path
- # Others are now at /Applications/Xcode.app/Contents/Developer/usr/bin
+ append_path "PATH", "#{MacOS::Xcode.toolchain_path}/usr/bin"
append_path 'PATH', MacOS.dev_tools_path
end
end