diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:17:13 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:17:13 -0400 |
commit | 8148582fc5d6ea8296e39c4c6830dbafc29d9127 (patch) | |
tree | 388192278c5fe030380f06dddaae8563db47882f /system/xfburn | |
parent | 4b9bb8f555d257b9f9c4615e697d625c7797f158 (diff) | |
download | slackbuilds-8148582fc5d6ea8296e39c4c6830dbafc29d9127.tar.gz |
system/xfburn: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/xfburn')
-rw-r--r-- | system/xfburn/xfburn.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/xfburn/xfburn.SlackBuild b/system/xfburn/xfburn.SlackBuild index cc19a4a9da..cb34c2ceab 100644 --- a/system/xfburn/xfburn.SlackBuild +++ b/system/xfburn/xfburn.SlackBuild @@ -30,10 +30,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 |