diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:44 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:44 -0400 |
commit | 133e2dd965df080395ae9eeea88fa91a27e1400f (patch) | |
tree | 0a90ae4c447d890247aa93aacc77b257e6143751 /libraries/libetpan | |
parent | 24e4b0abd5f0f30818e9139bfb91084f3285a652 (diff) | |
download | slackbuilds-133e2dd965df080395ae9eeea88fa91a27e1400f.tar.gz slackbuilds-133e2dd965df080395ae9eeea88fa91a27e1400f.tar.xz |
libraries/libetpan: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/libetpan')
-rw-r--r-- | libraries/libetpan/libetpan.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/libetpan/libetpan.SlackBuild b/libraries/libetpan/libetpan.SlackBuild index 9766d526f03..380be50d47e 100644 --- a/libraries/libetpan/libetpan.SlackBuild +++ b/libraries/libetpan/libetpan.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 |