summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
author David Somero2010-06-04 07:11:16 +0200
committer David Somero2010-06-04 07:11:16 +0200
commit97deb5a9b50cf9ec68ecd3fb71f83c4cd4824e59 (patch)
treedb7059dbc4eaa53f118d86e473df4851ca891e87 /misc
parentd0cde8ca8a735122a4591071a3f71aa9f783e442 (diff)
downloadslackbuilds-97deb5a9b50cf9ec68ecd3fb71f83c4cd4824e59.tar.gz
misc/rlwrap: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/rlwrap/rlwrap.SlackBuild6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/rlwrap/rlwrap.SlackBuild b/misc/rlwrap/rlwrap.SlackBuild
index b3543cb519..2b029e699a 100644
--- a/misc/rlwrap/rlwrap.SlackBuild
+++ b/misc/rlwrap/rlwrap.SlackBuild
@@ -12,10 +12,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