diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:58:55 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:58:55 -0400 |
commit | 6641bf687564c3f365e49a946e13cb293fce50a4 (patch) | |
tree | 86723031716de6f5bca1d3bf0a4a881fc43d7fab /academic/chemtool | |
parent | 94198c3c106150a1ead45f994629b02c892e08a4 (diff) | |
download | slackbuilds-6641bf687564c3f365e49a946e13cb293fce50a4.tar.gz |
academic/chemtool: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'academic/chemtool')
-rw-r--r-- | academic/chemtool/chemtool.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/academic/chemtool/chemtool.SlackBuild b/academic/chemtool/chemtool.SlackBuild index f0f8eeb22a..7a6b54df91 100644 --- a/academic/chemtool/chemtool.SlackBuild +++ b/academic/chemtool/chemtool.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 |