graphics/blender: Fixed ARCH setting bug

Thanks to Niels Horn!

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
Robby Workman 2010-05-31 22:09:55 -05:00
parent e32ff21dde
commit 1621f3d387
1 changed files with 3 additions and 3 deletions

View File

@ -33,10 +33,10 @@ LMTFA=${LMTFA:-yes}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) export ARCH=i486 ;;
arm*) export ARCH=arm ;;
i?86) ARCH=i386 ;;
arm*) ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) export ARCH=$( uname -m ) ;;
*) ARCH=$( uname -m ) ;;
esac
fi