From 6a3b2c36a77bbdc0f521e745ba227d8ba9855d08 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 29 Jan 2008 15:58:29 +0000 Subject: rename macrosfiles to arch_macrosfiles to make it more clear --- make_macrosfiles.sh.in | 74 -------------------------------------------------- 1 file changed, 74 deletions(-) delete mode 100644 make_macrosfiles.sh.in (limited to 'make_macrosfiles.sh.in') diff --git a/make_macrosfiles.sh.in b/make_macrosfiles.sh.in deleted file mode 100644 index 05be025..0000000 --- a/make_macrosfiles.sh.in +++ /dev/null @@ -1,74 +0,0 @@ -#!/bin/sh - -# $Id$ - -MINPUT="$1" -ARCH="$2" - -LIB=lib -OS=@RPMOS@ -OPTFLAGS=`perl -ane "m/^optflags:\s*${ARCH}\b\s*(.*)/ and print \\$1" < rpmrc` -MULTILIBNO= - -case $ARCH in - i*86|k6|athlon|pentium*) - MULTILIBNO=1 - CANONARCH=i386 - ;; - amd64|x86_64) - MULTILIBNO=2 - CANONARCH=x86_64 - LIB=lib64 - ;; - sparc|sparcv9) - MULTILIBNO=1 - CANONARCH=sparc - ;; - sparc64) - MULTILIBNO=2 - CANONARCH=sparc64 - LIB=lib64 - ;; - ppc|powerpc|ppc32) - MULTILIBNO=1 - CANONARCH=ppc - ;; - ppc64|powerpc64) - MULTILIBNO=2 - CANONARCH=ppc64 - LIB=lib64 - ;; - alpha) - CANONARCH=alpha - ;; - s390) - CANONARCH=s390-linux - MULTILIBNO=1 - ;; - s390x) - CANONARCH=s390x - LIB=lib64; - MULTILIBNO=2 ;; - *) - CANONARCH=$ARCH - LIB=lib - ;; -esac - -if [ -n "$MULTILIBNO" ]; then - MULTILIBSED='-e /^@MULTILIB/d -e s,@MULTILIBNO@,'$MULTILIBNO, -else - MULTILIBSED='-e /^@MULTILIBSTART@/,/^@MULTILIBEND@/d' -fi - -if [ -n "$OPTFLAGS" ]; then - OPTFLAGSSED="s/@RPMOPTFLAGS@/${OPTFLAGS}/g" -else - OPTFLAGSSED='s,^%optflags.*,,' -fi - -cat "$MINPUT" | sed \ - -e "s,@RPMARCH@,$CANONARCH,g" \ - -e "s,@LIB@,$LIB,g" \ - -e "$OPTFLAGSSED" \ - $MULTILIBSED -- cgit v1.2.1