From 14c1a4423e62d9026e8025b79e6902c06ea4ae47 Mon Sep 17 00:00:00 2001 From: Kevin Barry Date: Sun, 15 Feb 2009 19:47:45 -0500 Subject: [PATCH] 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 Signed-off-by: Dan McGee --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 2e7f433f..216cf760 100644 --- a/configure.ac +++ b/configure.ac @@ -190,7 +190,7 @@ case "${host_os}" in ;; darwin*) host_os_darwin=yes - SIZECMD="stat -f %z" + SIZECMD="/usr/bin/stat -f %z" ;; esac