Merge pull request #188 from mathstuf/python-osx

python: target OS X 10.6
This commit is contained in:
Todd Gamblin 2015-11-23 16:08:56 -08:00
commit de2213a621

View File

@ -26,6 +26,7 @@ class Python(Package):
def install(self, spec, prefix):
# Need this to allow python build to find the Python installation.
env['PYTHONHOME'] = prefix
env['MACOSX_DEPLOYMENT_TARGET'] = '10.6'
# Rest of install is pretty standard.
configure("--prefix=%s" % prefix,