From 73e7aa5bb0e083f0403735cb08a1c934fe0c2049 Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Wed, 12 Mar 2014 11:17:24 +0100 Subject: [PATCH] python: fixed cross-compiling by setting ac_cv_file__dev_ptmx=yes Note We can safely assume that the runtime system will have /dev/ptmx! Strangely enough on a native build I have /dev/ptmx didn't got detected, which is most probably an issue with our sandbox and needs some more observation! --- python/python/python.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/python/python.conf b/python/python/python.conf index 5cf777b46..5214120a0 100644 --- a/python/python/python.conf +++ b/python/python/python.conf @@ -55,4 +55,6 @@ fix_python_for_64bit() { # cross-compiling tweaks if atstage cross; then var_append configcache ' ' "ac_cv_buggy_getaddrinfo=no" + # on a running system we have /dev/ptmx + var_append configcache ' ' "ac_cv_file__dev_ptmx=yes" fi