diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:51 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:51 -0400 |
commit | 6b70ff685a1df0a556abb08120c905fd61ef55c7 (patch) | |
tree | ffa63db0963c906d008d2f4e942a7f3237acb968 /system/t1utils | |
parent | 44183919bef344aa91dd215ba884d68dc77e1abc (diff) | |
download | slackbuilds-6b70ff685a1df0a556abb08120c905fd61ef55c7.tar.gz |
system/t1utils: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/t1utils')
-rw-r--r-- | system/t1utils/t1utils.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/t1utils/t1utils.SlackBuild b/system/t1utils/t1utils.SlackBuild index e6ff5e9786..227e81f924 100644 --- a/system/t1utils/t1utils.SlackBuild +++ b/system/t1utils/t1utils.SlackBuild @@ -11,10 +11,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 |