From: Fabian Groffen Date: Tue, 10 Jan 2012 17:40:22 +0000 (+0100) Subject: Disable openpty on FreeMiNT too, bug #397613 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2e1d6a48af3e85fb938f8e6633ef3b41d5ac50d2;p=portage.git Disable openpty on FreeMiNT too, bug #397613 --- diff --git a/pym/portage/util/_pty.py b/pym/portage/util/_pty.py index 95082cf5b..1cde8f775 100644 --- a/pym/portage/util/_pty.py +++ b/pym/portage/util/_pty.py @@ -14,7 +14,7 @@ from portage.util import writemsg # behaviour causing hangs/deadlocks. # Additional note for the future: on Interix, pipes do NOT work, so # _disable_openpty on Interix must *never* be True -_disable_openpty = platform.system() in ("SunOS",) +_disable_openpty = platform.system() in ("SunOS","FreeMiNT",) _fbsd_test_pty = platform.system() == 'FreeBSD'