diff options
author | Koen Kooi <koen@openembedded.org> | 2008-10-02 11:17:40 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-10-02 11:17:40 +0000 |
commit | 9043f995bef80e7000e28d4ec628abe2d364ff06 (patch) | |
tree | 6c8c3a5a5b42de9974fe804856873911d32570f8 /packages/python/python-native_2.5.1.bb | |
parent | 694a6cbc5b4f0a6d0e66aa0a151849baa6c34e58 (diff) |
python-native: sync with poky
Diffstat (limited to 'packages/python/python-native_2.5.1.bb')
-rw-r--r-- | packages/python/python-native_2.5.1.bb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/packages/python/python-native_2.5.1.bb b/packages/python/python-native_2.5.1.bb index 3f58d36a2e..d43cb520cb 100644 --- a/packages/python/python-native_2.5.1.bb +++ b/packages/python/python-native_2.5.1.bb @@ -1,10 +1,10 @@ DESCRIPTION = "The Python Programming Language" HOMEPAGE = "http://www.python.org" LICENSE = "PSF" +DEPENDS = "openssl-native bzip2-full-native" SECTION = "devel/python" PRIORITY = "optional" -DEPENDS = "" -PR = "ml2" +PR = "ml5" EXCLUDE_FROM_WORLD = "1" @@ -15,6 +15,7 @@ SRC_URI = "\ file://dont-modify-shebang-line.patch;patch=1 \ file://default-is-optimized.patch;patch=1 \ file://catchup-with-swig.patch;patch=1 \ + file://fix-staging.patch;patch=1 \ " S = "${WORKDIR}/Python-${PV}" @@ -25,7 +26,8 @@ exec_prefix = "${STAGING_DIR_NATIVE}/${layout_exec_prefix}" EXTRA_OECONF = "--with-threads --with-pymalloc --with-cyclic-gc \ --without-cxx --with-signal-module --with-wctype-functions" -EXTRA_OEMAKE = 'BUILD_SYS="" HOST_SYS=""' +EXTRA_OEMAKE = 'BUILD_SYS="" HOST_SYS="" STAGING_LIBDIR=${STAGING_LIBDIR} \ + STAGING_INCDIR=${STAGING_INCDIR}' do_stage_append() { install -m 0755 Parser/pgen ${STAGING_BINDIR_NATIVE}/ |