academic/grace: Misc automated cleanups.

Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
This commit is contained in:
David Somero 2010-06-04 00:59:03 -04:00
parent 8b6869e15e
commit 2ab793d2ee
1 changed files with 3 additions and 3 deletions

View File

@ -12,10 +12,10 @@ TAG=${TAG:-"_SBo"}
# 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=i486 ;;
arm*) ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) export ARCH=$( uname -m ) ;;
*) ARCH=$( uname -m ) ;;
esac
fi