summaryrefslogtreecommitdiffstats
path: root/development/patchutils
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:03:16 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:03:16 -0400
commitce056b7419b6be8eb939060f95fec20677e669b1 (patch)
tree5b613d0cd6acf6c03a4511c02b587eb76944ab1c /development/patchutils
parent8a6294150bafc80ac1fb1ed97d0c43f5598952f1 (diff)
downloadslackbuilds-ce056b7419b6be8eb939060f95fec20677e669b1.tar.gz
slackbuilds-ce056b7419b6be8eb939060f95fec20677e669b1.tar.xz
development/patchutils: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development/patchutils')
-rw-r--r--development/patchutils/patchutils.SlackBuild6
1 files changed, 3 insertions, 3 deletions
diff --git a/development/patchutils/patchutils.SlackBuild b/development/patchutils/patchutils.SlackBuild
index bcedd278ab..9d10f8b1c6 100644
--- a/development/patchutils/patchutils.SlackBuild
+++ b/development/patchutils/patchutils.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