diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:44 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:44 -0400 |
commit | 627e42e7841d2b8715b7015402a99810c6a42491 (patch) | |
tree | 627d4e6b522292ec41f33868685ec5b40ae85e1c /office/evince | |
parent | 23244ba59daa80809a028535121ffe86be997ea0 (diff) | |
download | slackbuilds-627e42e7841d2b8715b7015402a99810c6a42491.tar.gz |
office/evince: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'office/evince')
-rwxr-xr-x | office/evince/evince.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/office/evince/evince.SlackBuild b/office/evince/evince.SlackBuild index 2a6fb34265..3794e1b786 100755 --- a/office/evince/evince.SlackBuild +++ b/office/evince/evince.SlackBuild @@ -31,10 +31,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 |