summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorKevin Barry <barryk@gmail.com>2009-02-15 19:47:45 -0500
committerDan McGee <dan@archlinux.org>2009-02-16 08:06:29 -0600
commit14c1a4423e62d9026e8025b79e6902c06ea4ae47 (patch)
tree44f70c3b6cdb4922553132abf1e18dc16d001e36 /configure.ac
parent04c2b9d4edb7f7e592919fa3bb975f9edd4fa0a6 (diff)
downloadpacman-14c1a4423e62d9026e8025b79e6902c06ea4ae47.tar.gz
pacman-14c1a4423e62d9026e8025b79e6902c06ea4ae47.zip
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>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
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