Disable openpty on FreeMiNT too, bug #397613
authorFabian Groffen <grobian@gentoo.org>
Tue, 10 Jan 2012 17:40:22 +0000 (18:40 +0100)
committerFabian Groffen <grobian@gentoo.org>
Tue, 10 Jan 2012 17:40:22 +0000 (18:40 +0100)
pym/portage/util/_pty.py

index 95082cf5b3c47f080501af3fdab453d3f3f75ba3..1cde8f7752f431da5174418e68baf38579fab9ab 100644 (file)
@@ -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'