summaryrefslogtreecommitdiff
path: root/aclocal.m4
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2008-09-24 12:30:46 +0000
committerIan Lynagh <igloo@earth.li>2008-09-24 12:30:46 +0000
commitdb84c6048957788fd702e73e328e71868adaff72 (patch)
tree4febb5a28ed14cd547f19289356a8bb89b504f2d /aclocal.m4
parent40065d252f91034dcc9ecc14e7cb25b6b7a0bdca (diff)
downloadhaskell-db84c6048957788fd702e73e328e71868adaff72.tar.gz
Look for gfind as well as find
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 42c136157b..758f3190fa 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -576,7 +576,7 @@ AC_DEFUN([FP_CHECK_PROG],
# ------------
# Find a non-WinDoze version of the "find" utility.
AC_DEFUN([FP_PROG_FIND],
-[AC_PATH_PROG([fp_prog_find], [find])
+[AC_PATH_PROGS([fp_prog_find], [gfind find], find)
echo foo > conftest.txt
$fp_prog_find conftest.txt -print > conftest.out 2>&1
if grep '^conftest.txt$' conftest.out > /dev/null 2>&1 ; then