diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:11:50 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:11:50 -0400 |
commit | 0c0aa7a5f6167e3fff472dcbeb9052e908a07dd9 (patch) | |
tree | 6c562fec6bc880284f6fc7e69ab29d657eed91da /multimedia/mlt | |
parent | 5abb887bae6984fd14073ea8c98a6bc111f7faa4 (diff) | |
download | slackbuilds-0c0aa7a5f6167e3fff472dcbeb9052e908a07dd9.tar.gz |
multimedia/mlt: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'multimedia/mlt')
-rw-r--r-- | multimedia/mlt/mlt.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/multimedia/mlt/mlt.SlackBuild b/multimedia/mlt/mlt.SlackBuild index 2d4d538cc9..36e61e8927 100644 --- a/multimedia/mlt/mlt.SlackBuild +++ b/multimedia/mlt/mlt.SlackBuild @@ -29,10 +29,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 |