diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:59 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:59 -0400 |
commit | 2bf6f2fcc28527ce6d79347f522ecb820dea74b9 (patch) | |
tree | bb87f2952f63ab941f2b61401719e14ce30f9a5d /office/texlive | |
parent | e4f29900fac8aedbfb5e485a9f38c4c62c524851 (diff) | |
download | slackbuilds-2bf6f2fcc28527ce6d79347f522ecb820dea74b9.tar.gz |
office/texlive: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'office/texlive')
-rwxr-xr-x | office/texlive/texlive.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/office/texlive/texlive.SlackBuild b/office/texlive/texlive.SlackBuild index aee62a7650..f88019fe66 100755 --- a/office/texlive/texlive.SlackBuild +++ b/office/texlive/texlive.SlackBuild @@ -39,10 +39,10 @@ TEXI2HTML=1.82 # texi2html version - http://www.nongnu.org/texi2html/ # 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 |