python_dependency: fix includes location on 10.9.

Fixes Homebrew/homebrew#23837.
Fixes Homebrew/homebrew#23866.
This commit is contained in:
Mike McQuaid 2013-11-01 11:19:23 -07:00
parent fd254c3874
commit bdbaf61304

View File

@ -142,8 +142,8 @@ class PythonDependency < Requirement
if brewed?
# Homebrew since a long while only supports frameworked python
HOMEBREW_PREFIX/"opt/#{python}/Frameworks/Python.framework/Versions/#{version.major}.#{version.minor}"
elsif from_osx?
# Python on OS X has been stripped off its includes (unless you install the CLT), therefore we use the MacOS.sdk.
elsif from_osx? and MacOS.version < :mavericks
# Python on OS X before Mavericks has been stripped off its includes (unless you install the CLT), therefore we use the MacOS.sdk.
Pathname.new("#{MacOS.sdk_path}/System/Library/Frameworks/Python.framework/Versions/#{version.major}.#{version.minor}")
else
# What Python knows about itself