summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author David Somero2010-06-04 07:17:16 +0200
committer David Somero2010-06-04 07:17:16 +0200
commit2f898172f1f7397eb0b8a832c114f5160e3fe362 (patch)
tree99c76ca319fc29d63026b8658c5ecfda04def088 /system
parentf6a1178f06bc60f83afd27a671361dc74185a82f (diff)
downloadslackbuilds-2f898172f1f7397eb0b8a832c114f5160e3fe362.tar.gz
system/xtrs: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/xtrs/xtrs.SlackBuild6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/xtrs/xtrs.SlackBuild b/system/xtrs/xtrs.SlackBuild
index d81b414742..8140adf53b 100644
--- a/system/xtrs/xtrs.SlackBuild
+++ b/system/xtrs/xtrs.SlackBuild
@@ -13,10 +13,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