95dasd: use 'uname -m' instead of 'arch'

master
Harald Hoyer 2009-09-29 14:48:56 +02:00
parent 9a2860a3ee
commit ffe53c91c5
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#!/bin/bash
arch=$(arch)
arch=$(uname -m)
[ "$arch" = "s390" -o "$arch" = "s390x" ] || exit 1

exit 0