diff options
Diffstat (limited to 'source/ap/radeontool/radeontool.SlackBuild')
-rwxr-xr-x | source/ap/radeontool/radeontool.SlackBuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source/ap/radeontool/radeontool.SlackBuild b/source/ap/radeontool/radeontool.SlackBuild index 2a5a3fe4..ee4292df 100755 --- a/source/ap/radeontool/radeontool.SlackBuild +++ b/source/ap/radeontool/radeontool.SlackBuild @@ -25,12 +25,13 @@ VERSION=1.6.1 BUILD=${BUILD:-1} -# Automatically determine architecture for build & packaging: +# 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 ;; # Unless $ARCH is already set, use uname -m for all other archs: - *) export ARCH=$( uname -m ) ;; + *) export ARCH=$( uname -m ) ;; esac fi |