# # 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): -oe.git/commit/packages/oprofile?id=a2a083ab240026ca479b4800c09c02b656e1d70e'>commitdiff
path: root/packages/oprofile
ackages/swfdec?id=61c418c9dd00f35aa6e96117ed71bf17a824e244'>swfdec: fix DEPENDS
AgeCommit message (Expand)AuthorFiles
2009-01-06oprofile: Include powerpc architecture files, due to powerpc/ppc namespace ch...Leon Woestenberg5
2008-12-05oprofile: ship only ARCH related support - saves 1.8MB (from BugLabs)Marcin Juszkiewicz5
2008-12-05oprofile: move common stuff to oprofile.incMarcin Juszkiewicz5
Koen Kooi1
2008-07-02swfdec: fix 0.4.0 and add 0.7.2Koen Kooi4
2007-06-12remove a bunch of empty directoriesRolf Leggewie