summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorWill Woods <wwoods@redhat.com>2009-02-24 16:38:18 -0500
committerChris Lumens <clumens@redhat.com>2009-02-25 17:32:26 -0500
commitd991a6c2e41545ef195c550dcb7849fb0aa5f8f0 (patch)
treea95ccfbffa38b672b6cf43725a679a7d7a43e54c /scripts
parent79d529938a17cd06caa8862d5d758ee7d0e6c5e6 (diff)
downloadanaconda-d991a6c2e41545ef195c550dcb7849fb0aa5f8f0.tar.gz
anaconda-d991a6c2e41545ef195c550dcb7849fb0aa5f8f0.tar.xz
anaconda-d991a6c2e41545ef195c550dcb7849fb0aa5f8f0.zip
Remove implicit BUILDARCH->BASEARCH conversion
For simplicity's sake - and because we might actually want to do --arch i686 someday - remove the i.86->i386 conversion added in commit 990bcf14. We're doing that in buildinstall now.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/mk-images4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/mk-images b/scripts/mk-images
index d86da0a77..a30cf6af0 100755
--- a/scripts/mk-images
+++ b/scripts/mk-images
@@ -30,7 +30,7 @@ usage () {
}
DEBUG=""
-BUILDARCH=`uname -m | sed -e 's/i.86/i386/'`
+BUILDARCH=`uname -m`
BOOTISO="boot.iso"
while [ $# -gt 0 ]; do
@@ -44,7 +44,7 @@ while [ $# -gt 0 ]; do
shift
;;
--arch)
- BUILDARCH=`echo $2 | sed -e 's/i.86/i386/'`
+ BUILDARCH=$2
shift; shift
;;
--imgdir)