diff options
author | Jeremy Katz <katzj@redhat.com> | 2008-02-28 15:14:25 -0500 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2008-02-28 15:14:25 -0500 |
commit | fb5f071e67910f358f1e87f8c9595876addc0999 (patch) | |
tree | 8471054f0cb108d85115f3224db442d2481555ba /iutil.py | |
parent | ecfd195d2c6f57bfd9a27b5430f2731fe5f1f5c0 (diff) | |
download | anaconda-fb5f071e67910f358f1e87f8c9595876addc0999.tar.gz anaconda-fb5f071e67910f358f1e87f8c9595876addc0999.tar.xz anaconda-fb5f071e67910f358f1e87f8c9595876addc0999.zip |
Don't write out /etc/rpm/platform anymore.
We used to need this for platforms like iSeries and pSeries to avoid
crazy asm in rpm. These platforms all use the standard kernel now and
so we _shouldn't_ need to know the variation. Let's see what happens
Diffstat (limited to 'iutil.py')
-rw-r--r-- | iutil.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -492,9 +492,9 @@ def writeRpmPlatform(root="/"): # now make the current install believe it, too rhpl.arch.canonArch = myarch - f = open("%s/etc/rpm/platform" %(root,), 'w+') - f.write("%s-redhat-linux\n" %(myarch,)) - f.close() +# f = open("%s/etc/rpm/platform" %(root,), 'w+') +# f.write("%s-redhat-linux\n" %(myarch,)) +# f.close() # FIXME: writing /etc/rpm/macros feels wrong somehow # temporary workaround for #92285 |