diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:18 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:18 -0400 |
commit | 00e8645181ebfc937624578256f57e09639472ca (patch) | |
tree | 703fb2be4e24bd27825cb0264862e3e27d0e794d /libraries/pangomm | |
parent | b7a5143fe0fa0270f7ff6376b1a6e1d4d4609b53 (diff) | |
download | slackbuilds-00e8645181ebfc937624578256f57e09639472ca.tar.gz |
libraries/pangomm: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/pangomm')
-rwxr-xr-x | libraries/pangomm/pangomm.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/pangomm/pangomm.SlackBuild b/libraries/pangomm/pangomm.SlackBuild index 4577ee59ba..981ef0426f 100755 --- a/libraries/pangomm/pangomm.SlackBuild +++ b/libraries/pangomm/pangomm.SlackBuild @@ -30,10 +30,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 |