summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZubin Duggal <zubin.duggal@gmail.com>2023-01-23 15:12:00 +0530
committerMatthew Pickering <matthewtpickering@gmail.com>2023-02-01 13:18:46 +0000
commit86dc9a79736c0ab8df919fd5eafa9f1e321e79fd (patch)
tree3f1c307e9d1af159190872142bd156b014e0a45c
parentd9e8c39d7af96078ac62000537a94614d6d7cedf (diff)
downloadhaskell-86dc9a79736c0ab8df919fd5eafa9f1e321e79fd.tar.gz
bindist configure: Fail if find not found (#22691)
(cherry picked from commit c9967d137cff83c7688e26f87a8b5e196a75ec93)
-rw-r--r--distrib/configure.ac.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/distrib/configure.ac.in b/distrib/configure.ac.in
index 3efadcc177..55a28c540f 100644
--- a/distrib/configure.ac.in
+++ b/distrib/configure.ac.in
@@ -90,6 +90,10 @@ AC_PATH_PROG(SedCmd,gsed sed,sed)
dnl ** check for Python for testsuite driver
FIND_PYTHON
FP_PROG_FIND
+if test -z "$FindCmd"
+then
+ AC_MSG_ERROR([find is required.])
+fi
XCODE_VERSION()