# # 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( os.getenv("BUILD_SYS"), os.getenv("HOST_SYS") ) +EXEC_PREFIX = os.path.normpath(sys.exec_prefix).replace( os.getenv("BUILD_SYS"), os.getenv("HOST_SYS") ) # 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( os.getenv("BUILD_SYS"), os.getenv("HOST_SYS") ) 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( os.getenv("BUILD_SYS"), os.getenv("HOST_SYS") ) def parse_config_h(fp, g=None): ech-oe.git/commit/packages/xerces-c?id=e2ad63e36348a3e534f6f55b902e22d3ad98be30'>commitdiff
path: root/packages/xerces-c
AgeCommit message (Expand)AuthorFiles
2008-01-12xerces-c 2.8.0 make it compile for the target architecture *cough*Michael Lauer1
2008-01-12xerces-c 2.8.0 add, remove non-working 2.6.0 and 2.7.0Michael Lauer3
2007-02-12divers: fix minor spacing errors, sanitizeRolf Leggewie2
2006-11-23xerces-c_2.7.0_bb : Add version 2.7.0 of xerces-c.Philip Balister1
2006-10-10Remove MAINTAINER fields from recipes, add MAINTAINER file to replace them.Koen Kooi1
2006-07-08packages/xerces-c/xerces-c_2.6.0.bb: Use configure directly instead of runCon...Holger Freyther1
2006-04-28packages/xerces-c:Holger Freyther1
2005-09-19Make cp invocations BSD compatibleHolger Freyther1
2005-07-11Random syntax fixes. R_VALUE must be quotedHolger Freyther1
2005-06-30import clean BK tree at cset 1.3670Koen Kooi1
2005-06-15Merge bk://oe-devel.bkbits.net/openembeddedJohn Bowler1
2005-05-20Merge bk://oe-devel.bkbits.net/openembeddednslu2-linux.adm@bkbits.net1