diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:02:59 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:02:59 -0400 |
commit | 34ca94d118138cb1f0a49598e539c37ab4dfa8b7 (patch) | |
tree | 0a25dd05b5022c40053cb281d651a04e4b1fb399 | |
parent | d3f2f5c542306f31aa26360289ad8f18b27caa3e (diff) | |
download | slackbuilds-34ca94d118138cb1f0a49598e539c37ab4dfa8b7.tar.gz |
development/ipython: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | development/ipython/ipython.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/development/ipython/ipython.SlackBuild b/development/ipython/ipython.SlackBuild index d1ff80ae46..ad7617e087 100644 --- a/development/ipython/ipython.SlackBuild +++ b/development/ipython/ipython.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 |