diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:03 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:03 -0400 |
commit | 969644b69b8f9693222a14b40968e086bd429a58 (patch) | |
tree | b18a132391afbbfdbbb7cc01845957b9d3cc1078 /system/Eterm | |
parent | f9fcc4eda484a36fe350ff65a5aa624b6623d099 (diff) | |
download | slackbuilds-969644b69b8f9693222a14b40968e086bd429a58.tar.gz |
system/Eterm: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/Eterm')
-rw-r--r-- | system/Eterm/Eterm.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/Eterm/Eterm.SlackBuild b/system/Eterm/Eterm.SlackBuild index 512bcf6d81..30dfac59db 100644 --- a/system/Eterm/Eterm.SlackBuild +++ b/system/Eterm/Eterm.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 |