From 3addb627cfd910163937ace344278c495940e629 Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Wed, 12 Mar 2014 11:29:20 +0100 Subject: [PATCH] python: fixed cross-compiling setting ac_cv_file__dev_ptc=no There is no /dev/ptc on Linux because it is AIX specific. --- python/python/python.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/python/python.conf b/python/python/python.conf index 5214120a0..c50ad412f 100644 --- a/python/python/python.conf +++ b/python/python/python.conf @@ -57,4 +57,6 @@ 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" + # no /dev/ptc because it is AIX specific + var_append configcache ' ' "ac_cv_file__dev_ptc=no" fi