diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:59 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:59 -0400 |
commit | 220222a8ee9d5a4c2d220292ebeef86180ed743f (patch) | |
tree | bc77641ff41e261aa27d3f42c0ef4dd80d1fae95 | |
parent | f377999ff135cb7be47612a5186992b01c63eb00 (diff) | |
download | slackbuilds-220222a8ee9d5a4c2d220292ebeef86180ed743f.tar.gz |
system/krusader: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | system/krusader/krusader.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/krusader/krusader.SlackBuild b/system/krusader/krusader.SlackBuild index a60d4181f3..55f328f9a0 100644 --- a/system/krusader/krusader.SlackBuild +++ b/system/krusader/krusader.SlackBuild @@ -32,10 +32,10 @@ SRC_VERSION="$(printf $VERSION | tr _ -)" # 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 |