diff options
author | David Somero | 2010-06-04 07:07:52 +0200 |
---|---|---|
committer | David Somero | 2010-06-04 07:07:52 +0200 |
commit | f788b57c432d4516da64c9611851a9a6a3ec2a2a (patch) | |
tree | 00429668ff0730e471b03c4d32e572f7362a3e27 /libraries/libgdiplus | |
parent | 33d796605f829d0e208b08a5795a593504c125b6 (diff) | |
download | slackbuilds-f788b57c432d4516da64c9611851a9a6a3ec2a2a.tar.gz |
libraries/libgdiplus: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/libgdiplus')
-rw-r--r-- | libraries/libgdiplus/libgdiplus.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/libgdiplus/libgdiplus.SlackBuild b/libraries/libgdiplus/libgdiplus.SlackBuild index ea0cf79e29..a24e06e101 100644 --- a/libraries/libgdiplus/libgdiplus.SlackBuild +++ b/libraries/libgdiplus/libgdiplus.SlackBuild @@ -32,10 +32,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 |