From aaea112b23ddfd4efc8fcf2ce8ffe0c318adfc9f Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Tue, 21 May 2002 18:44:35 +0000 Subject: that just didn't make any sense; don't check the arch in the command line processing (thanks msf) --- anaconda | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'anaconda') diff --git a/anaconda b/anaconda index e51247b16..4e5eda400 100755 --- a/anaconda +++ b/anaconda @@ -214,8 +214,10 @@ for n in args: display_mode = 't' elif (str == '-x' or str == '--xmode'): xmode = 1 - elif iutil.getArch() == "s390": - logFile = "/tmp/anaconda-s390.log" + +# s390s don't have ttys +if iutil.getArch() == "s390": + logFile = "/tmp/anaconda-s390.log" # # must specify install, rescue mode -- cgit