diff options
author | Allan McRae <allan@archlinux.org> | 2010-06-30 13:29:26 +1000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-06-30 08:27:29 -0500 |
commit | 0ea52e3a4f698ce3b1c90881a2b2eaa56625f261 (patch) | |
tree | 5512abce4be98990da7bc0c6467ac4200d5e3868 /configure.ac | |
parent | 8b23aa172f6229dd82c381704d4802d9747e118b (diff) | |
download | pacman-0ea52e3a4f698ce3b1c90881a2b2eaa56625f261.tar.xz |
makepkg: try standard paths for coreutils du
Attempt to find "du" from coreutils in the standard paths and if
not revert to the version in the users PATH. Using the full path
prevents issues such as FS#19932, where a different and incompatible
version of du is put earlier in the users path.
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 4faf20d9..7d4e60f8 100644 --- a/configure.ac +++ b/configure.ac @@ -210,6 +210,7 @@ esac AM_CONDITIONAL([CYGWIN], test "x$host_os_cygwin" = "xyes") AM_CONDITIONAL([DARWIN], test "x$host_os_darwin" = "xyes") +AC_PATH_PROGS([DUPATH], [du], [du], [/usr/bin$PATH_SEPARATOR/bin] ) AC_SUBST(SIZECMD) AC_SUBST(SEDINPLACE) AC_SUBST(STRIP_BINARIES) |