summaryrefslogtreecommitdiffstats
path: root/development/docutils
diff options
context:
space:
mode:
author David Somero2010-06-04 07:02:41 +0200
committer David Somero2010-06-04 07:02:41 +0200
commit694cf51edeba2789112f86de74d6978dacf7922c (patch)
treec1bfa3785a1d77a374e1ad23952df32cc0fa7dc9 /development/docutils
parentb7d5240bb7a04c269e92abaae54a9b6eefc0919b (diff)
downloadslackbuilds-694cf51edeba2789112f86de74d6978dacf7922c.tar.gz
development/docutils: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development/docutils')
-rw-r--r--development/docutils/docutils.SlackBuild6
1 files changed, 3 insertions, 3 deletions
diff --git a/development/docutils/docutils.SlackBuild b/development/docutils/docutils.SlackBuild
index dfd57b49b9..8b2526af1d 100644
--- a/development/docutils/docutils.SlackBuild
+++ b/development/docutils/docutils.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