diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:05 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:05 -0400 |
commit | 9c86050320b99468347a85ce67605c1a506e8458 (patch) | |
tree | e8d1e63befd056beb5f0ba8139124c06bfe4127d /libraries/locale-gettext | |
parent | bba1106221a790ebcd2c1a654f734f92fd8ae8a2 (diff) | |
download | slackbuilds-9c86050320b99468347a85ce67605c1a506e8458.tar.gz |
libraries/locale-gettext: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/locale-gettext')
-rw-r--r-- | libraries/locale-gettext/locale-gettext.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/locale-gettext/locale-gettext.SlackBuild b/libraries/locale-gettext/locale-gettext.SlackBuild index 061b82878c..181dcfb714 100644 --- a/libraries/locale-gettext/locale-gettext.SlackBuild +++ b/libraries/locale-gettext/locale-gettext.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 |