configure.ac: use full path of stat for Mac OS X

Change configure.ac to use the full path of stat when on darwin/mac.
This is needed for situations when a user installs the GNU/coreutils
and places it in their path before /usr/bin, but the SIZECMD is
already configured for Darwin's version of stat.

Signed-off-by: Kevin Barry <barryk gmail com>
Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Kevin Barry 2009-02-15 19:47:45 -05:00 committed by Dan McGee
parent 04c2b9d4ed
commit 14c1a4423e
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ case "${host_os}" in
;;
darwin*)
host_os_darwin=yes
SIZECMD="stat -f %z"
SIZECMD="/usr/bin/stat -f %z"
;;
esac