diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-03-02 19:34:33 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-03-02 19:34:33 +0000 |
commit | 6a84d9c086a764a2c3c58152719ea249a9807969 (patch) | |
tree | e6efac871295c98d9f3686746862dcd2293a4fb7 /python | |
parent | d0684e36180b2c5decb96eac7988818f83f87cf7 (diff) |
This patch fixes cross-building python packages
on platforms where #include <pyport.h> bails out. distutils.sysconfig no longer tries to include
build headers.
BKrev: 4044e1c9Y_xZn7plet8xtxP3NvXy4A
Diffstat (limited to 'python')
-rw-r--r-- | python/python-native-2.3.3/cross-distutils.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/python/python-native-2.3.3/cross-distutils.patch b/python/python-native-2.3.3/cross-distutils.patch index e69de29bb2..db09de5cb0 100644 --- a/python/python-native-2.3.3/cross-distutils.patch +++ b/python/python-native-2.3.3/cross-distutils.patch @@ -0,0 +1,38 @@ + +# +# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher +# + +--- Python-2.3.3/Lib/distutils/sysconfig.py~cross-distutils 2003-02-10 15:02:33.000000000 +0100 ++++ Python-2.3.3/Lib/distutils/sysconfig.py 2004-03-02 20:15:05.000000000 +0100 +@@ -19,8 +19,8 @@ + from errors import DistutilsPlatformError + + # These are needed in a couple of spots, so just compute them once. +-PREFIX = os.path.normpath(sys.prefix) +-EXEC_PREFIX = os.path.normpath(sys.exec_prefix) ++PREFIX = os.path.normpath(sys.prefix).replace( "build", "target" ) ++EXEC_PREFIX = os.path.normpath(sys.exec_prefix).replace( "build", "target" ) + + # python_build: (Boolean) if true, we're either building Python or + # building an extension with an un-installed Python, so we use +@@ -192,7 +192,8 @@ + else: + # The name of the config.h file changed in 2.2 + config_h = 'pyconfig.h' +- return os.path.join(inc_dir, config_h) ++ print "NOTE: sysconfig.get_config_h_filename() altered for OpenEmbedded" ++ return os.path.join(inc_dir, config_h).replace( "build", "target" ) + + + def get_makefile_filename(): +@@ -200,7 +201,8 @@ + if python_build: + return os.path.join(os.path.dirname(sys.executable), "Makefile") + lib_dir = get_python_lib(plat_specific=1, standard_lib=1) +- return os.path.join(lib_dir, "config", "Makefile") ++ print "NOTE: sysconfig.get_config_h_filename() altered for OpenEmbedded" ++ return os.path.join(lib_dir, "config", "Makefile").replace( "build", "target" ) + + + def parse_config_h(fp, g=None): |