summaryrefslogtreecommitdiffstats
path: root/openembedded-extras/packages/python/python-native-2.4.0/cross-distutils.patch
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-05-26 13:28:14 +0000
committerRichard Purdie <richard@openedhand.com>2006-05-26 13:28:14 +0000
commit1cd244533c2436e27a974d7c6a15262be7a49f50 (patch)
treec86f52fe49cfb4421a581f9cd7b9f65dfaea9a2e /openembedded-extras/packages/python/python-native-2.4.0/cross-distutils.patch
parent39811ea4ae7f49ce27b6206727ffd929aed986dd (diff)
downloadpoky-1cd244533c2436e27a974d7c6a15262be7a49f50.tar.gz
Create openembedded-extras collection. Disabled by default - see local.conf.sample about how to enable
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@429 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded-extras/packages/python/python-native-2.4.0/cross-distutils.patch')
-rw-r--r--openembedded-extras/packages/python/python-native-2.4.0/cross-distutils.patch38
1 files changed, 38 insertions, 0 deletions
diff --git a/openembedded-extras/packages/python/python-native-2.4.0/cross-distutils.patch b/openembedded-extras/packages/python/python-native-2.4.0/cross-distutils.patch
new file mode 100644
index 0000000000..76ae883c1d
--- /dev/null
+++ b/openembedded-extras/packages/python/python-native-2.4.0/cross-distutils.patch
@@ -0,0 +1,38 @@
1
2#
3# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
4#
5
6--- Python-2.3.3/Lib/distutils/sysconfig.py~cross-distutils 2003-02-10 15:02:33.000000000 +0100
7+++ Python-2.3.3/Lib/distutils/sysconfig.py 2004-03-02 20:15:05.000000000 +0100
8@@ -19,8 +19,8 @@
9 from errors import DistutilsPlatformError
10
11 # These are needed in a couple of spots, so just compute them once.
12-PREFIX = os.path.normpath(sys.prefix)
13-EXEC_PREFIX = os.path.normpath(sys.exec_prefix)
14+PREFIX = os.path.normpath(sys.prefix).replace( os.getenv("BUILD_SYS"), os.getenv("HOST_SYS") )
15+EXEC_PREFIX = os.path.normpath(sys.exec_prefix).replace( os.getenv("BUILD_SYS"), os.getenv("HOST_SYS") )
16
17 # python_build: (Boolean) if true, we're either building Python or
18 # building an extension with an un-installed Python, so we use
19@@ -192,7 +192,8 @@
20 else:
21 # The name of the config.h file changed in 2.2
22 config_h = 'pyconfig.h'
23- return os.path.join(inc_dir, config_h)
24+ print "NOTE: sysconfig.get_config_h_filename() altered for OpenEmbedded"
25+ return os.path.join(inc_dir, config_h).replace( os.getenv("BUILD_SYS"), os.getenv("HOST_SYS") )
26
27
28 def get_makefile_filename():
29@@ -200,7 +201,8 @@
30 if python_build:
31 return os.path.join(os.path.dirname(sys.executable), "Makefile")
32 lib_dir = get_python_lib(plat_specific=1, standard_lib=1)
33- return os.path.join(lib_dir, "config", "Makefile")
34+ print "NOTE: sysconfig.get_config_h_filename() altered for OpenEmbedded"
35+ return os.path.join(lib_dir, "config", "Makefile").replace( os.getenv("BUILD_SYS"), os.getenv("HOST_SYS") )
36
37
38 def parse_config_h(fp, g=None):