mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-22 15:58:50 -05:00
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:
parent
04c2b9d4ed
commit
14c1a4423e
@ -190,7 +190,7 @@ case "${host_os}" in
|
||||
;;
|
||||
darwin*)
|
||||
host_os_darwin=yes
|
||||
SIZECMD="stat -f %z"
|
||||
SIZECMD="/usr/bin/stat -f %z"
|
||||
;;
|
||||
esac
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user