blob: d9b6117f143cf0109966860d0ea2b89252e7081f (
plain)
1
2
3
4
5
6
7
|
#!/bin/bash
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
# ex: ts=8 sw=4 sts=4 et filetype=sh
arch=$(uname -m)
[ "$arch" = "s390" -o "$arch" = "s390x" ] || exit 1
exit 0
|