diff options
-rw-r--r-- | template.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/template.SlackBuild b/template.SlackBuild index 81a75e2..afa10ad 100644 --- a/template.SlackBuild +++ b/template.SlackBuild @@ -42,10 +42,10 @@ TAG=${TAG:-_SBo} # the "_SBo" is required # 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 |