diff options
-rwxr-xr-x | scripts/install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/install.sh b/scripts/install.sh index 8eb6ee062..7b3b5bc4d 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -201,10 +201,10 @@ if (( cyls < (cfgfs + 2) )); then exit 1 fi -if stat --help >/dev/null 2>&1; then - statcmd='stat -c %s' # GNU stat -else +if stat -qs .>/dev/null 2>&1; then statcmd='stat -f %z' # BSD stat (or so we assume) +else + statcmd='stat -c %s' # GNU stat fi if ! T=$(mktemp -d /tmp/openadk.XXXXXXXXXX); then |