diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:32 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:32 -0400 |
commit | a03eecd37d0ad4152f7cfb7cb0efbf066f4ecdf6 (patch) | |
tree | 20e657d8d4360eb8a9151419816b0aad5558ff6e /system/preload | |
parent | 2e8c1cf7be625e913ff5b61783809eb7285b98bd (diff) | |
download | slackbuilds-a03eecd37d0ad4152f7cfb7cb0efbf066f4ecdf6.tar.gz |
system/preload: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/preload')
-rw-r--r-- | system/preload/preload.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/preload/preload.SlackBuild b/system/preload/preload.SlackBuild index f770f69661..a5fe11626b 100644 --- a/system/preload/preload.SlackBuild +++ b/system/preload/preload.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 |