aboutsummaryrefslogtreecommitdiffstats
path: root/make_arch_macrosfiles.sh.in
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2008-01-29 15:58:29 +0000
committerPascal Rigaux <pixel@mandriva.com>2008-01-29 15:58:29 +0000
commit6a3b2c36a77bbdc0f521e745ba227d8ba9855d08 (patch)
treed2cc25ee2a0c26e4649bc1f5f4d500853fa7f1eb /make_arch_macrosfiles.sh.in
parent15aa319480cbdc269c6293cc5a9ccb85c7238238 (diff)
downloadrpm-setup-6a3b2c36a77bbdc0f521e745ba227d8ba9855d08.tar
rpm-setup-6a3b2c36a77bbdc0f521e745ba227d8ba9855d08.tar.gz
rpm-setup-6a3b2c36a77bbdc0f521e745ba227d8ba9855d08.tar.bz2
rpm-setup-6a3b2c36a77bbdc0f521e745ba227d8ba9855d08.tar.xz
rpm-setup-6a3b2c36a77bbdc0f521e745ba227d8ba9855d08.zip
rename macrosfiles to arch_macrosfiles to make it more clear
Diffstat (limited to 'make_arch_macrosfiles.sh.in')
-rw-r--r--make_arch_macrosfiles.sh.in74
1 files changed, 74 insertions, 0 deletions
diff --git a/make_arch_macrosfiles.sh.in b/make_arch_macrosfiles.sh.in
new file mode 100644
index 0000000..05be025
--- /dev/null
+++ b/make_arch_macrosfiles.sh.in
@@ -0,0 +1,74 @@
+#!/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