diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-03 17:19:01 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-14 14:38:27 +0000 |
commit | 78ac027f2ac6c6663fff7080eabbd3d09c1241bb (patch) | |
tree | b2f67d63080cb94b3f25fa848c078f7809d5ffa1 /meta/recipes-devtools/python/python.inc | |
parent | 745b146a379c9ed3ceec16a909e315676ffde049 (diff) | |
download | poky-78ac027f2ac6c6663fff7080eabbd3d09c1241bb.tar.gz |
python.inc: make lsb override more concise
No functionality change, just a readability improvement
(From OE-Core rev: 7a27f95c2800285d7f97fead616620bfd7dabbe3)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python.inc')
-rw-r--r-- | meta/recipes-devtools/python/python.inc | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/meta/recipes-devtools/python/python.inc b/meta/recipes-devtools/python/python.inc index eee7a64370..d0ed55b3b1 100644 --- a/meta/recipes-devtools/python/python.inc +++ b/meta/recipes-devtools/python/python.inc | |||
@@ -16,6 +16,9 @@ PYTHON_MAJMIN = "2.7" | |||
16 | 16 | ||
17 | inherit autotools | 17 | inherit autotools |
18 | 18 | ||
19 | PYTHONLSBOPTS = "--with-wctype-functions" | ||
20 | PYTHONLSBOPTS_linuxstdbase = "ac_cv_sizeof_off_t=8" | ||
21 | |||
19 | EXTRA_OECONF = "\ | 22 | EXTRA_OECONF = "\ |
20 | --with-threads \ | 23 | --with-threads \ |
21 | --with-pymalloc \ | 24 | --with-pymalloc \ |
@@ -24,14 +27,5 @@ EXTRA_OECONF = "\ | |||
24 | --with-signal-module \ | 27 | --with-signal-module \ |
25 | --with-wctype-functions \ | 28 | --with-wctype-functions \ |
26 | --enable-shared \ | 29 | --enable-shared \ |
27 | " | 30 | ${PYTHONLSBOPTS} \ |
28 | |||
29 | EXTRA_OECONF_linuxstdbase = "\ | ||
30 | --with-threads \ | ||
31 | --with-pymalloc \ | ||
32 | --with-cyclic-gc \ | ||
33 | --without-cxx \ | ||
34 | --with-signal-module \ | ||
35 | --enable-shared \ | ||
36 | ac_cv_sizeof_off_t=8 \ | ||
37 | " | 31 | " |