diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:59:42 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:59:42 -0400 |
commit | e5624e52e90f8edb2134b70cd66579e018cb67ea (patch) | |
tree | 2a7a53bccc475eafde179522a576a2efbbb64d05 /audio | |
parent | 7fe349301f89aede7bc94fee93660c5937a999e0 (diff) |
audio/ario: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/ario/ario.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/ario/ario.SlackBuild b/audio/ario/ario.SlackBuild index fa8db433e55c..cda7ab4e0191 100644 --- a/audio/ario/ario.SlackBuild +++ b/audio/ario/ario.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 |