diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:28 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:28 -0400 |
commit | d562b2449cf254928de35d62c843ccbbe1cfef3a (patch) | |
tree | fa21945d725c0293c24bf2a75b930bdbc94f5c80 /graphics/mtpaint | |
parent | c21058e5ec953f6651964269e9326dea9229802f (diff) | |
download | slackbuilds-d562b2449cf254928de35d62c843ccbbe1cfef3a.tar.gz |
graphics/mtpaint: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'graphics/mtpaint')
-rw-r--r-- | graphics/mtpaint/mtpaint.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/mtpaint/mtpaint.SlackBuild b/graphics/mtpaint/mtpaint.SlackBuild index be87f55b66..036bcf8c89 100644 --- a/graphics/mtpaint/mtpaint.SlackBuild +++ b/graphics/mtpaint/mtpaint.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 |