summaryrefslogtreecommitdiff
path: root/package/python2/files/python-config.patch
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-12-12 11:53:47 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2013-12-12 11:53:47 +0100
commit1820537b047086ac5d5c042296372a9ce2c5c822 (patch)
tree267f9cf7e8aea75053a1b907aca4e52c22f6cd71 /package/python2/files/python-config.patch
parent9f7250f4f4f15eb9c261641ee83cae88d5b05684 (diff)
another try to fix python problems
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)