diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:11:16 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:11:16 -0400 |
commit | 97deb5a9b50cf9ec68ecd3fb71f83c4cd4824e59 (patch) | |
tree | db7059dbc4eaa53f118d86e473df4851ca891e87 /misc/rlwrap | |
parent | d0cde8ca8a735122a4591071a3f71aa9f783e442 (diff) | |
download | slackbuilds-97deb5a9b50cf9ec68ecd3fb71f83c4cd4824e59.tar.gz |
misc/rlwrap: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'misc/rlwrap')
-rw-r--r-- | misc/rlwrap/rlwrap.SlackBuild | 6 |
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 |