diff options
author | Kevin Barry <barryk@gmail.com> | 2009-02-16 01:47:45 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-02-16 15:06:29 +0100 |
commit | 14c1a4423e62d9026e8025b79e6902c06ea4ae47 (patch) | |
tree | 44f70c3b6cdb4922553132abf1e18dc16d001e36 | |
parent | 04c2b9d4edb7f7e592919fa3bb975f9edd4fa0a6 (diff) | |
download | pacman-14c1a4423e62d9026e8025b79e6902c06ea4ae47.tar.gz pacman-14c1a4423e62d9026e8025b79e6902c06ea4ae47.tar.xz |
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>
-rw-r--r-- | configure.ac | 2 |
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 |