diff options
author | David Somero | 2010-06-04 07:00:21 +0200 |
---|---|---|
committer | David Somero | 2010-06-04 07:00:21 +0200 |
commit | 4efded419b531b85bf8a96b02438ff65b0aba81a (patch) | |
tree | 2d65c56b1bd7554448a4dcb1b7e7cda39dd22b29 /audio/mpd/mpd.SlackBuild | |
parent | 610b560ff9426f361640fba5973781fd90189c7a (diff) | |
download | slackbuilds-4efded419b531b85bf8a96b02438ff65b0aba81a.tar.gz |
audio/mpd: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio/mpd/mpd.SlackBuild')
-rw-r--r-- | audio/mpd/mpd.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/mpd/mpd.SlackBuild b/audio/mpd/mpd.SlackBuild index 769e5832cc..5cd3d25c08 100644 --- a/audio/mpd/mpd.SlackBuild +++ b/audio/mpd/mpd.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 |