diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:00:39 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:00:39 -0400 |
commit | c3b1f483a81507e3a0e079ef8837afd22ee49576 (patch) | |
tree | ca4a9a911a925e50189180f313c0e487d08345a8 | |
parent | 012e33fd795c5c315790c3d5f34308b780288094 (diff) |
audio/specimen: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | audio/specimen/specimen.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/specimen/specimen.SlackBuild b/audio/specimen/specimen.SlackBuild index cbb33b10ada3..f80521884f6a 100644 --- a/audio/specimen/specimen.SlackBuild +++ b/audio/specimen/specimen.SlackBuild @@ -26,10 +26,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 |