summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-01-09 00:53:27 +0000
committerJeremy Katz <katzj@redhat.com>2002-01-09 00:53:27 +0000
commit09bb99f8845738fe2a23a45d2505493d61480b5a (patch)
treef85ebd1beaed4dbd28766b85c05871bb53cac518 /iutil.py
parent46fd98e4e68277e5f11a82e57e94c728d1d1c9b7 (diff)
downloadanaconda-09bb99f8845738fe2a23a45d2505493d61480b5a.tar.gz
anaconda-09bb99f8845738fe2a23a45d2505493d61480b5a.tar.xz
anaconda-09bb99f8845738fe2a23a45d2505493d61480b5a.zip
iutil.getArch now returns s390 for s390x, clean up to handle this nicely
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/iutil.py b/iutil.py
index b1c0a3bd6..738dd77f2 100644
--- a/iutil.py
+++ b/iutil.py
@@ -33,6 +33,9 @@ def getArch ():
if arch == "sparc64":
arch = "sparc"
+ if arch == "s390x":
+ arch = "s390"
+
return arch
def getfd(filespec, readOnly = 0):