aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorTim D. Smith2015-07-17 19:34:57 -0700
committerTim D. Smith2015-08-15 20:24:20 -0700
commit6606c7b53b6dadfed821e36eaf3333893cd7ae4e (patch)
tree9c475fc8f2371384da0f6023b1bf2aee5abbff2b /Library/Homebrew
parent88e8e6cf600f8b3c88f07e49b83c41f45beb023a (diff)
downloadbrew-6606c7b53b6dadfed821e36eaf3333893cd7ae4e.tar.bz2
Revert "work around missing __debug header in Xcode CLT 6.3"
Ding, dong, the witch is dead... This reverts commit fd5ca9ba16f5afc181364369210cb94e997a5a5e. Ref Homebrew/homebrew#38514, Homebrew/homebrew#38735. Closes Homebrew/homebrew#41843.
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/extend/ENV/super.rb10
1 files changed, 1 insertions, 9 deletions
diff --git a/Library/Homebrew/extend/ENV/super.rb b/Library/Homebrew/extend/ENV/super.rb
index a5892d122..a59b54a1d 100644
--- a/Library/Homebrew/extend/ENV/super.rb
+++ b/Library/Homebrew/extend/ENV/super.rb
@@ -162,15 +162,7 @@ module Superenv
end
def determine_include_paths
- paths = keg_only_deps.map { |d| d.opt_include.to_s }
-
- # https://github.com/Homebrew/homebrew/issues/38514
- if MacOS::CLT.installed? && MacOS.active_developer_dir.include?("CommandLineTools") &&
- MacOS::CLT.version == "6.3.0.0.1.1428348375"
- paths << "#{HOMEBREW_LIBRARY}/ENV/include/6.3"
- end
-
- paths.to_path_s
+ keg_only_deps.map { |d| d.opt_include.to_s }.to_path_s
end
def determine_library_paths