From 397986d19a9e125bb16cf2e950ef96a985cf9637 Mon Sep 17 00:00:00 2001 From: Timo Aaltonen Date: Tue, 3 Sep 2013 00:03:12 +0300 Subject: Don't search platform path Don't use Python.h from the platform specific path --- ipapython/py_default_encoding/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipapython/py_default_encoding') diff --git a/ipapython/py_default_encoding/setup.py b/ipapython/py_default_encoding/setup.py index de2478c1..6a1af628 100644 --- a/ipapython/py_default_encoding/setup.py +++ b/ipapython/py_default_encoding/setup.py @@ -22,7 +22,7 @@ from distutils.sysconfig import get_python_inc import sys import os -python_header = os.path.join(get_python_inc(plat_specific=1), 'Python.h') +python_header = os.path.join(get_python_inc(plat_specific=0), 'Python.h') if not os.path.exists(python_header): sys.exit("Cannot find Python development packages that provide Python.h") -- cgit