diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-10-19 22:35:36 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2006-10-19 22:35:36 +0000 |
commit | 63cdfadedd1bfaff1b63a8485c375e8d267ea2c0 (patch) | |
tree | 61e8cf286ee3f2e624e2b8e982ba0cd1c70745dc /packages/python | |
parent | 7d5bfa35b2cf579d5205da2bd827799a2171e6c8 (diff) |
python-native 2.4.0 compile with --prefix same as --exec-prefix to fix some rare cases of distutils builds
let's see if this breaks anything...
Diffstat (limited to 'packages/python')
-rw-r--r-- | packages/python/python-native_2.4.0.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/python/python-native_2.4.0.bb b/packages/python/python-native_2.4.0.bb index 18b890203f..3333512563 100644 --- a/packages/python/python-native_2.4.0.bb +++ b/packages/python/python-native_2.4.0.bb @@ -4,7 +4,7 @@ LICENSE = "PSF" SECTION = "devel/python" PRIORITY = "optional" DEPENDS = "" -PR = "r1" +PR = "r2" EXCLUDE_FROM_WORLD = "1" @@ -17,7 +17,7 @@ S = "${WORKDIR}/Python-2.4" inherit autotools native EXTRA_OECONF = "--with-threads --with-pymalloc --with-cyclic-gc --without-cxx --with-signal-module --with-wctype-functions \ - --with-prefix=${STAGING_DIR} --with-exec-prefix=${STAGING_DIR}/${BUILD_SYS}" + --with-prefix=${STAGING_DIR}/${BUILD_SYS} --with-exec-prefix=${STAGING_DIR}/${BUILD_SYS}" EXTRA_OEMAKE = 'BUILD_SYS="" HOST_SYS=""' do_configure() { |