diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:22 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:22 -0400 |
commit | b2bccb8b49e05caf187901f4c2585266b26b0de5 (patch) | |
tree | 3638189000ecb3139dbfcd23af7730b82a6f8c05 /system | |
parent | 785fea08b73b70b4dbf6d8c31dae88b21046d045 (diff) |
system/conky: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/conky/conky.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/conky/conky.SlackBuild b/system/conky/conky.SlackBuild index 1de7b4a8ecaf..687df1e2af72 100644 --- a/system/conky/conky.SlackBuild +++ b/system/conky/conky.SlackBuild @@ -12,10 +12,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 |