diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:32 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:32 -0400 |
commit | 988db4c432a16cfa9184db4028ea1980174f8061 (patch) | |
tree | 47779d3ee04374919b579968432c3248a6abceac /graphics/potrace | |
parent | 22c688f0dea61542bc52be52747db46afbc71fb0 (diff) | |
download | slackbuilds-988db4c432a16cfa9184db4028ea1980174f8061.tar.gz |
graphics/potrace: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'graphics/potrace')
-rw-r--r-- | graphics/potrace/potrace.SlackBuild | 6 |
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 |