diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:04:34 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:04:34 -0400 |
commit | 82f5d2b3808f105a0ad83dc724f38af291d17ee0 (patch) | |
tree | 1b34cb04f6c95df82a8b028c148644893b9b4978 | |
parent | 30b527e6873c2ec6decf8ca40024cc6684c4b2f6 (diff) |
games/mupen64plus: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | games/mupen64plus/mupen64plus.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/mupen64plus/mupen64plus.SlackBuild b/games/mupen64plus/mupen64plus.SlackBuild index 9b0eb829b0a7..f2c7cf68662a 100644 --- a/games/mupen64plus/mupen64plus.SlackBuild +++ b/games/mupen64plus/mupen64plus.SlackBuild @@ -32,10 +32,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 |