diff options
Diffstat (limited to 'source/d/poke')
-rwxr-xr-x | source/d/poke/poke.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/d/poke/poke.SlackBuild b/source/d/poke/poke.SlackBuild index 200157a60..f6be2bd07 100755 --- a/source/d/poke/poke.SlackBuild +++ b/source/d/poke/poke.SlackBuild @@ -30,7 +30,7 @@ BUILD=${BUILD:-1} if [ -z "$ARCH" ]; then case "$(uname -m)" in i?86) ARCH=i586 ;; - arm*) readelf /usr/bin/file -A | egrep -q "Tag_CPU.*[4,5]" && ARCH=arm || ARCH=armv7hl ;; + arm*) readelf /usr/bin/file -A | grep -E -q "Tag_CPU.*[4,5]" && ARCH=arm || ARCH=armv7hl ;; # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$(uname -m) ;; esac |