diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:59:41 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:59:41 -0400 |
commit | 7fe349301f89aede7bc94fee93660c5937a999e0 (patch) | |
tree | 7fbec7ac5a393cb25182bbf9786b2c6412f610ae /audio/ardour | |
parent | de71000fcee1ecbb06a9e44d4d8496b0a308dec5 (diff) | |
download | slackbuilds-7fe349301f89aede7bc94fee93660c5937a999e0.tar.gz |
audio/ardour: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio/ardour')
-rw-r--r-- | audio/ardour/ardour.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/ardour/ardour.SlackBuild b/audio/ardour/ardour.SlackBuild index 50aa34bcdb..92bd91dcb2 100644 --- a/audio/ardour/ardour.SlackBuild +++ b/audio/ardour/ardour.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 |