diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:06:38 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:06:38 -0400 |
commit | 7bc7795b53b492dec667446f3b4b76493bc0494d (patch) | |
tree | 9fb961cf0463ecd3f86f2ab7cc079f0d5d1ac6ef /libraries | |
parent | 521d3e0dd8963a23c3dd56a245090107e99fc9ad (diff) | |
download | slackbuilds-7bc7795b53b492dec667446f3b4b76493bc0494d.tar.gz |
libraries/gdal: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/gdal/gdal.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/gdal/gdal.SlackBuild b/libraries/gdal/gdal.SlackBuild index d95f7b2f0f..b18f4ebb5a 100644 --- a/libraries/gdal/gdal.SlackBuild +++ b/libraries/gdal/gdal.SlackBuild @@ -10,10 +10,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 |