diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:17:16 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:17:16 -0400 |
commit | 2f898172f1f7397eb0b8a832c114f5160e3fe362 (patch) | |
tree | 99c76ca319fc29d63026b8658c5ecfda04def088 /system/xtrs | |
parent | f6a1178f06bc60f83afd27a671361dc74185a82f (diff) | |
download | slackbuilds-2f898172f1f7397eb0b8a832c114f5160e3fe362.tar.gz |
system/xtrs: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/xtrs')
-rw-r--r-- | system/xtrs/xtrs.SlackBuild | 6 |
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 |