diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:35 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:35 -0400 |
commit | d97e6e9c0723385884e7c3e889700e278991db9a (patch) | |
tree | 0a5ad863ef44fcc55e39b1b5f3cf6a5d424d9cb2 /network/offlineimap | |
parent | 1ae1313686bdb9c0ac612b821c51dfc7e3833bf3 (diff) | |
download | slackbuilds-d97e6e9c0723385884e7c3e889700e278991db9a.tar.gz |
network/offlineimap: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/offlineimap')
-rw-r--r-- | network/offlineimap/offlineimap.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/network/offlineimap/offlineimap.SlackBuild b/network/offlineimap/offlineimap.SlackBuild index ef93b6f88a..01ee9b6df5 100644 --- a/network/offlineimap/offlineimap.SlackBuild +++ b/network/offlineimap/offlineimap.SlackBuild @@ -32,10 +32,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 |