diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:59:47 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:59:47 -0400 |
commit | a998339f99a76fb2557dcc8a73b98b6de997be81 (patch) | |
tree | 73c7ed4ff9ec76e28fdcce5c41a76824aa53599d | |
parent | d1be2c906fbf650f0ca9c8ea6a6e2dda725aec12 (diff) | |
download | slackbuilds-a998339f99a76fb2557dcc8a73b98b6de997be81.tar.gz |
audio/clementine: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rwxr-xr-x | audio/clementine/clementine.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/clementine/clementine.SlackBuild b/audio/clementine/clementine.SlackBuild index 7d2898580b..76d9a406d2 100755 --- a/audio/clementine/clementine.SlackBuild +++ b/audio/clementine/clementine.SlackBuild @@ -32,10 +32,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 |