aboutsummaryrefslogtreecommitdiffstats
path: root/Library/ENV
diff options
context:
space:
mode:
authorJack Nagel2014-05-08 17:10:08 -0500
committerJack Nagel2014-05-08 17:24:48 -0500
commit314d5db225eeabc869272d09353b671aa1a79576 (patch)
treec4fbcbd8e93654e8618a442f6196ecc40020dfb9 /Library/ENV
parent1a5e42a03482d2ad1ff22458a7b19af6af23f56c (diff)
downloadhomebrew-314d5db225eeabc869272d09353b671aa1a79576.tar.bz2
Always use stub tools in /usr/bin on 10.9
Diffstat (limited to 'Library/ENV')
-rwxr-xr-xLibrary/ENV/4.3/xcrun1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/ENV/4.3/xcrun b/Library/ENV/4.3/xcrun
index a4d2beacf..7443cec17 100755
--- a/Library/ENV/4.3/xcrun
+++ b/Library/ENV/4.3/xcrun
@@ -15,6 +15,7 @@ arg0 = ARGV.shift
exe = "/usr/bin/#{arg0}"
if File.executable?(exe)
+ exec(exe, *ARGV) if ENV["HOMEBREW_PREFER_CLT_PROXIES"]
sdkroot = ENV["HOMEBREW_SDKROOT"]
exec(exe, *ARGV) unless sdkroot && File.directory?(sdkroot)
end