Bläddra i källkod

fix xbmc build, it uses distutils to find python include dir

Waldemar Brodkorb 11 år sedan
förälder
incheckning
4fb59c5e77
1 ändrade filer med 10 tillägg och 0 borttagningar
  1. 10 0
      package/python2/patches/patch-Lib_distutils_sysconfig_py

+ 10 - 0
package/python2/patches/patch-Lib_distutils_sysconfig_py

@@ -0,0 +1,10 @@
+--- Python-2.7.5.orig/Lib/distutils/sysconfig.py	2013-05-12 05:32:42.000000000 +0200
++++ Python-2.7.5/Lib/distutils/sysconfig.py	2013-11-03 18:03:53.000000000 +0100
+@@ -76,6 +76,7 @@ def get_python_inc(plat_specific=0, pref
+     """
+     if prefix is None:
+         prefix = plat_specific and EXEC_PREFIX or PREFIX
++        prefix = re.sub('host_', 'target_', prefix)
+ 
+     if os.name == "posix":
+         if python_build: