#!/bin/sh
#gcc: i386 i486 i586 pentium pentiumpro xeon athlon
#altpath: i486 i386 i586 pentium pentiumpro xeon athlon

#gcc: powerpc
#altpath: powerpc

if [ "$1" = gcc ];then
	awk "/#gcc: .*$ARCH/{print \$2}" $0
else
	awk "/#altpath: .*$ARCH/{print \$2}" $0
fi
