diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-14 14:00:21 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-16 00:03:15 +0100 |
commit | faf20cc3804325b13f0e9679507724a904cbd3a0 (patch) | |
tree | 18584e5600044948301da3fe3762e81a4224ff1b | |
parent | 23d162838b11231008efe8061d8b41b9250c8901 (diff) | |
download | poky-faf20cc3804325b13f0e9679507724a904cbd3a0.tar.gz |
python3-native: Avoid use of getentropy/getrandom
getentropy/random() is only available in glibc 2.25+ and uninative may relocate
binaries onto systems that don't have this function. For now, force the code to
the older codepaths until we can come up with a better solution for this kind of
issue.
(From OE-Core rev: 92bda0024d85ae78345665cc2f9646c9881ed61b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/python/python3-native_3.5.3.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python3-native_3.5.3.bb b/meta/recipes-devtools/python/python3-native_3.5.3.bb index 3467d29d4e..db0e7b9bd8 100644 --- a/meta/recipes-devtools/python/python3-native_3.5.3.bb +++ b/meta/recipes-devtools/python/python3-native_3.5.3.bb | |||
@@ -44,7 +44,8 @@ inherit native | |||
44 | 44 | ||
45 | require python-native-${PYTHON_MAJMIN}-manifest.inc | 45 | require python-native-${PYTHON_MAJMIN}-manifest.inc |
46 | 46 | ||
47 | EXTRA_OECONF_append = " --bindir=${bindir}/${PN} --without-ensurepip" | 47 | # uninative may be used on pre glibc 2.25 systems which don't have getentropy |
48 | EXTRA_OECONF_append = " --bindir=${bindir}/${PN} --without-ensurepip ac_cv_func_getentropy=no" | ||
48 | 49 | ||
49 | EXTRA_OEMAKE = '\ | 50 | EXTRA_OEMAKE = '\ |
50 | LIBC="" \ | 51 | LIBC="" \ |
@@ -59,6 +60,7 @@ PYTHONLSBOPTS = "" | |||
59 | 60 | ||
60 | do_configure_append() { | 61 | do_configure_append() { |
61 | autoreconf --verbose --install --force --exclude=autopoint ../Python-${PV}/Modules/_ctypes/libffi | 62 | autoreconf --verbose --install --force --exclude=autopoint ../Python-${PV}/Modules/_ctypes/libffi |
63 | sed -i -e 's,#define HAVE_GETRANDOM 1,/\* #undef HAVE_GETRANDOM \*/,' ${B}/pyconfig.h | ||
62 | } | 64 | } |
63 | 65 | ||
64 | do_install() { | 66 | do_install() { |