summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/iutil.py b/iutil.py
index a18e7a31e..d23a8835d 100644
--- a/iutil.py
+++ b/iutil.py
@@ -470,13 +470,8 @@ def writeRpmPlatform(root="/"):
myarch = rhpl.arch.canonArch
# now allow an override with rpmarch=i586 on the command line (#101971)
- f = open("/proc/cmdline", "r")
- buf = f.read()
- f.close()
- args = buf.split()
- for arg in args:
- if arg.startswith("rpmarch="):
- myarch = arg[8:]
+ if flags.cmdline.has_key("rpmarch"):
+ myarch = flags.cmdline["rpmarch"]
# now make the current install believe it, too
rhpl.arch.canonArch = myarch