diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:57 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:57 -0400 |
commit | 218a23de72a04742433e5583d942b7d409eafb0e (patch) | |
tree | 01a0c24f1c9642174605b7de727095a6db11641a /network/icecat | |
parent | 1b4895cb09fb53c8ebb820e210b30ab6951b0234 (diff) | |
download | slackbuilds-218a23de72a04742433e5583d942b7d409eafb0e.tar.gz |
network/icecat: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/icecat')
-rw-r--r-- | network/icecat/icecat.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/network/icecat/icecat.SlackBuild b/network/icecat/icecat.SlackBuild index 349af0c31e..6532b4ceb8 100644 --- a/network/icecat/icecat.SlackBuild +++ b/network/icecat/icecat.SlackBuild @@ -11,10 +11,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 |