diff options
author | Saul Wold <sgw@linux.intel.com> | 2013-12-20 10:30:39 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-02 12:50:48 +0000 |
commit | 3bfadeb3d86dc2b51525b7650567c42df0d0abcb (patch) | |
tree | 1e222a9d51d9ea935311b47fbc6e72104108131c /meta/recipes-devtools/python/python.inc | |
parent | 30616257b8d611db204cb85126c2578325b9c048 (diff) | |
download | openembedded-core-3bfadeb3d86dc2b51525b7650567c42df0d0abcb.tar.gz openembedded-core-3bfadeb3d86dc2b51525b7650567c42df0d0abcb.tar.bz2 openembedded-core-3bfadeb3d86dc2b51525b7650567c42df0d0abcb.zip |
python: fix unrecognised options: --without-cxx --with-cyclic-gc
The -with-cxx changed to with-cxx-main sometime around the 2.5 time frame
It appears that there never was a with-cyclic-gc configure option, or if
there was it was from some past patch we no longer have.
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools/python/python.inc')
-rw-r--r-- | meta/recipes-devtools/python/python.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/recipes-devtools/python/python.inc b/meta/recipes-devtools/python/python.inc index 87f5a39116..4991b975f4 100644 --- a/meta/recipes-devtools/python/python.inc +++ b/meta/recipes-devtools/python/python.inc @@ -22,8 +22,7 @@ PYTHONLSBOPTS_linuxstdbase = "ac_cv_sizeof_off_t=8" EXTRA_OECONF = "\ --with-threads \ --with-pymalloc \ - --with-cyclic-gc \ - --without-cxx \ + --without-cxx-main \ --with-signal-module \ --enable-shared \ --enable-ipv6=${@base_contains('DISTRO_FEATURES', 'ipv6', 'yes', 'no', d)} \ |