diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:02:03 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:02:03 -0400 |
commit | e85b371d02ba10943e8155ac2620d1c8acdb8619 (patch) | |
tree | 41c6a0fbfd6afc912ba37e63be057c2b25130ff7 /desktop/xfce4-places-plugin | |
parent | 9a30a5f3fe8cdfd2042813517b4cbb83642f179e (diff) | |
download | slackbuilds-e85b371d02ba10943e8155ac2620d1c8acdb8619.tar.gz |
desktop/xfce4-places-plugin: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/xfce4-places-plugin')
-rw-r--r-- | desktop/xfce4-places-plugin/xfce4-places-plugin.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/xfce4-places-plugin/xfce4-places-plugin.SlackBuild b/desktop/xfce4-places-plugin/xfce4-places-plugin.SlackBuild index fde874aabd..53fea12cf6 100644 --- a/desktop/xfce4-places-plugin/xfce4-places-plugin.SlackBuild +++ b/desktop/xfce4-places-plugin/xfce4-places-plugin.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 |