summaryrefslogtreecommitdiff
path: root/package/python2/files/python-config.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/python2/files/python-config.patch')
-rw-r--r--package/python2/files/python-config.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/package/python2/files/python-config.patch b/package/python2/files/python-config.patch
new file mode 100644
index 000000000..9478835d5
--- /dev/null
+++ b/package/python2/files/python-config.patch
@@ -0,0 +1,21 @@
+--- python2.7-config.orig 2013-12-11 12:40:37.244519764 +0100
++++ python2.7-config 2013-12-11 12:41:43.279093075 +0100
+@@ -3,6 +3,7 @@
+ import sys
+ import os
+ import getopt
++import re
+ from distutils import sysconfig
+
+ valid_opts = ['prefix', 'exec-prefix', 'includes', 'libs', 'cflags',
+@@ -37,8 +38,8 @@
+ print sysconfig.EXEC_PREFIX
+
+ elif opt in ('--includes', '--cflags'):
+- flags = ['-I' + sysconfig.get_python_inc(),
+- '-I' + sysconfig.get_python_inc(plat_specific=True)]
++ flags = ['-I' + re.sub('target_', 'host_', sysconfig.get_python_inc()),
++ '-I' + re.sub('target_', 'host_', sysconfig.get_python_inc(plat_specific=True))]
+ if opt == '--cflags':
+ flags.extend(getvar('CFLAGS').split())
+ print ' '.join(flags)