summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2010-02-23 10:36:05 -1000
committerDavid Cantrell <dcantrell@redhat.com>2010-02-23 10:36:05 -1000
commit4b5cc653db4a189b71d91da429a2772bba1d82d1 (patch)
tree8e4b89d5862b7a954d11cdaee48897e5e01a498c /scripts
parentf264631d276d7749daf0d95320921f061599e666 (diff)
downloadanaconda-4b5cc653db4a189b71d91da429a2772bba1d82d1.tar.gz
anaconda-4b5cc653db4a189b71d91da429a2772bba1d82d1.tar.xz
anaconda-4b5cc653db4a189b71d91da429a2772bba1d82d1.zip
When BUILDARCH==ppc64, set BASEARCH to ppc (#524235).
We need BASEARCH set to ppc when BUILDARCH is ppc64, otherwise the scripts do not pick up the keymaps-override-ppc.gz file on ppc64 platforms.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/mk-images2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/mk-images b/scripts/mk-images
index 8188bcbf2..df2242555 100755
--- a/scripts/mk-images
+++ b/scripts/mk-images
@@ -126,6 +126,8 @@ fi
if [ "$BUILDARCH" = "sparc64" ]; then
BASEARCH=sparc
+elif [ "$BUILDARCH" = "ppc64" ]; then
+ BASEARCH=ppc
else
BASEARCH=$BUILDARCH
fi