[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH 6/6] Stop using rhpl.arch in writeRpmPlatform()
- From: Jeremy Katz <katzj redhat com>
- To: anaconda-devel-list redhat com
- Subject: [PATCH 6/6] Stop using rhpl.arch in writeRpmPlatform()
- Date: Tue, 30 Jun 2009 16:08:44 -0400
yum's rpmUtils.arch has the same bits as rhpl.arch, so use those
instead for writing out /etc/rpm/platform
---
iutil.py | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/iutil.py b/iutil.py
index f80d4a5..8649224 100644
--- a/iutil.py
+++ b/iutil.py
@@ -26,7 +26,6 @@ import signal
import os.path
from errno import *
import inspect
-import rhpl
import warnings
import subprocess
from flags import flags
@@ -565,7 +564,7 @@ def isEfi():
## Generate the /etc/rpm/macros file.
# @param root The root of the filesystem to create the files in.
def writeRpmPlatform(root="/"):
- import rhpl.arch
+ import rpmUtils.arch
if flags.test:
return
@@ -574,14 +573,14 @@ def writeRpmPlatform(root="/"):
if not os.access("%s/etc/rpm" %(root,), os.X_OK):
os.mkdir("%s/etc/rpm" %(root,))
- myarch = rhpl.arch.canonArch
+ myarch = rpmUtils.arch.canonArch
# now allow an override with rpmarch=i586 on the command line (#101971)
if flags.targetarch != None:
myarch = flags.targetarch
# now make the current install believe it, too
- rhpl.arch.canonArch = myarch
+ rpmUtils.arch.canonArch = myarch
# FIXME: writing /etc/rpm/macros feels wrong somehow
# temporary workaround for #92285
--
1.6.1
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]