diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:17:14 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:17:14 -0400 |
commit | dfaecb0ef4968f854065b5366a760127cf7c5cd8 (patch) | |
tree | 63534fc6222d65cf64a95299a8051b617b9e11b3 /system/xfe | |
parent | 8148582fc5d6ea8296e39c4c6830dbafc29d9127 (diff) |
system/xfe: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/xfe')
-rw-r--r-- | system/xfe/xfe.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/xfe/xfe.SlackBuild b/system/xfe/xfe.SlackBuild index cda33ce6be2e..d263a65abda3 100644 --- a/system/xfe/xfe.SlackBuild +++ b/system/xfe/xfe.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 |