diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:55 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:55 -0400 |
commit | 361c12424a4ae888bd82fc2354267ac4cc8ba1c3 (patch) | |
tree | 4a8d41745d02c74f79c2aaec101243efa10540b5 /desktop | |
parent | 5e0485d096d277e2262c837c9387a8f9fd75067f (diff) | |
download | slackbuilds-361c12424a4ae888bd82fc2354267ac4cc8ba1c3.tar.gz |
desktop/xfce4-cpugraph-plugin: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin.SlackBuild b/desktop/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin.SlackBuild index 40b4a041e6..84367831c1 100644 --- a/desktop/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin.SlackBuild +++ b/desktop/xfce4-cpugraph-plugin/xfce4-cpugraph-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 |