diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:08 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:08 -0400 |
commit | 601b4afa4e6143fcd1ed3304c11e8185eee13671 (patch) | |
tree | ba672e82fae55a2ae3a3e3aa21a4a0a6b1a7e8d3 /desktop/icewm | |
parent | a43a1b33a87db3fb83046f701ed64789d9dddf52 (diff) |
desktop/icewm: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/icewm')
-rw-r--r-- | desktop/icewm/icewm.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/icewm/icewm.SlackBuild b/desktop/icewm/icewm.SlackBuild index 243eb236528e..05bd72d25367 100644 --- a/desktop/icewm/icewm.SlackBuild +++ b/desktop/icewm/icewm.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 |