diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2015-03-23 16:42:21 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-24 17:52:38 +0000 |
commit | f19d5e3ffbb10ddc6220249fb9e978d1c3fc5e45 (patch) | |
tree | 0afeab723a48d2e004710a9ec3c5a2c33336daf3 /meta/recipes-devtools/python/python_2.7.9.bb | |
parent | 27fe06cb7d30c79833769b3ebb080a7a8115439d (diff) | |
download | openembedded-core-f19d5e3ffbb10ddc6220249fb9e978d1c3fc5e45.tar.gz openembedded-core-f19d5e3ffbb10ddc6220249fb9e978d1c3fc5e45.tar.bz2 openembedded-core-f19d5e3ffbb10ddc6220249fb9e978d1c3fc5e45.zip |
python: fix cached config value for /dev/ptmx
Linux usually has /dev/ptmx, so set set it to yes.
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python_2.7.9.bb')
-rw-r--r-- | meta/recipes-devtools/python/python_2.7.9.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python_2.7.9.bb b/meta/recipes-devtools/python/python_2.7.9.bb index 6d5b42a42f..0031b8f453 100644 --- a/meta/recipes-devtools/python/python_2.7.9.bb +++ b/meta/recipes-devtools/python/python_2.7.9.bb @@ -38,7 +38,7 @@ TARGET_CC_ARCH_append_armv6 = " -D__SOFTFP__" TARGET_CC_ARCH_append_armv7a = " -D__SOFTFP__" # The following is a hack until we drop ac_cv_sizeof_off_t from site files -EXTRA_OECONF += "${@bb.utils.contains('DISTRO_FEATURES', 'largefile', 'ac_cv_sizeof_off_t=8', '', d)} ac_cv_file__dev_ptmx=no ac_cv_file__dev_ptc=no" +EXTRA_OECONF += "${@bb.utils.contains('DISTRO_FEATURES', 'largefile', 'ac_cv_sizeof_off_t=8', '', d)} ac_cv_file__dev_ptmx=yes ac_cv_file__dev_ptc=no" do_configure_append() { rm -f ${S}/Makefile.orig |