summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
author David Somero2010-06-04 07:05:32 +0200
committer David Somero2010-06-04 07:05:32 +0200
commit988db4c432a16cfa9184db4028ea1980174f8061 (patch)
tree47779d3ee04374919b579968432c3248a6abceac /graphics
parent22c688f0dea61542bc52be52747db46afbc71fb0 (diff)
downloadslackbuilds-988db4c432a16cfa9184db4028ea1980174f8061.tar.gz
graphics/potrace: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'graphics')
-rw-r--r--graphics/potrace/potrace.SlackBuild6
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/potrace/potrace.SlackBuild b/graphics/potrace/potrace.SlackBuild
index 69eaa3aa43..395f1a9566 100644
--- a/graphics/potrace/potrace.SlackBuild
+++ b/graphics/potrace/potrace.SlackBuild
@@ -11,10 +11,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