summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author David Somero2010-06-04 07:15:49 +0200
committer David Somero2010-06-04 07:15:49 +0200
commit84298df35c2939ac38185ddc3c3da3dd4387d5ca (patch)
tree152d21aea927336c26db742dafde7dd9c624f141 /system
parent771ac7821654700858e12144bb130185955b70cd (diff)
downloadslackbuilds-84298df35c2939ac38185ddc3c3da3dd4387d5ca.tar.gz
system/halevt: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/halevt/halevt.SlackBuild6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/halevt/halevt.SlackBuild b/system/halevt/halevt.SlackBuild
index 8fbb278c47..e792d5f8af 100644
--- a/system/halevt/halevt.SlackBuild
+++ b/system/halevt/halevt.SlackBuild
@@ -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