From 65e06b20130da895fda8e3698a7ebe18e14d13ca Mon Sep 17 00:00:00 2001 From: Panu Matilainen Date: Wed, 1 Oct 2008 10:06:27 +0300 Subject: [PATCH] Tweaks to how ISA-macros are generated (rhbz#464754) - for ppc and sparc, move the check for 64bit version first and use a wildcards to cover more field automatically --- installplatform | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/installplatform b/installplatform index bb5933d..8861df0 100755 --- a/installplatform +++ b/installplatform @@ -80,13 +80,13 @@ for SUBST in $SUBSTS ; do ISANAME= ISABITS= case "${ARCH}" in - sparc|sparcv8|sparcv9*) + sparc64*) ISANAME=sparc - ISABITS=32 + ISABITS=64 ;; - sparc64|sparc64v) + sparc*) ISANAME=sparc - ISABITS=64 + ISABITS=32 ;; s390) ISANAME=s390 @@ -96,13 +96,13 @@ for SUBST in $SUBSTS ; do ISANAME=s390 ISABITS=64 ;; - ppc) + ppc64*) ISANAME=ppc - ISABITS=32 + ISABITS=64 ;; - ppc64) + ppc*) ISANAME=ppc - ISABITS=64 + ISABITS=32 ;; i?86|pentium?|athlon|geode) ISANAME=x86 -- 2.7.4