diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:19 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:19 -0400 |
commit | b3b17ed90c31df5df5996d96aa8e87c3fd0e67c9 (patch) | |
tree | 5b3f07864b07eb8457cb9407fd99114795f7c048 /libraries/lame | |
parent | fb72c71c2a7b10ef9920626549cd46c69dbbed34 (diff) | |
download | slackbuilds-b3b17ed90c31df5df5996d96aa8e87c3fd0e67c9.tar.gz |
libraries/lame: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/lame')
-rw-r--r-- | libraries/lame/lame.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/lame/lame.SlackBuild b/libraries/lame/lame.SlackBuild index 1ba662a19e..21b0194093 100644 --- a/libraries/lame/lame.SlackBuild +++ b/libraries/lame/lame.SlackBuild @@ -31,10 +31,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 |