diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:43 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:43 -0400 |
commit | b04a1ddbb6e7a3ce0cdfd3579901c959b8efbe1a (patch) | |
tree | f74a8a98fc9c73e7a5cfbf08b9bf0cc42fd7a3dd /libraries/xulrunner | |
parent | 00995aa05c57bd2ae0bb6c96a3aacb9c6da1c1b9 (diff) | |
download | slackbuilds-b04a1ddbb6e7a3ce0cdfd3579901c959b8efbe1a.tar.gz |
libraries/xulrunner: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/xulrunner')
-rw-r--r-- | libraries/xulrunner/xulrunner.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/xulrunner/xulrunner.SlackBuild b/libraries/xulrunner/xulrunner.SlackBuild index 1d5cae46d8..36e739d72a 100644 --- a/libraries/xulrunner/xulrunner.SlackBuild +++ b/libraries/xulrunner/xulrunner.SlackBuild @@ -35,10 +35,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 |