From 2e1d6a48af3e85fb938f8e6633ef3b41d5ac50d2 Mon Sep 17 00:00:00 2001 From: Fabian Groffen Date: Tue, 10 Jan 2012 18:40:22 +0100 Subject: [PATCH] Disable openpty on FreeMiNT too, bug #397613 --- pym/portage/util/_pty.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' -- 2.26.2