From 8e0fe80ede558a84618ee63adbf8f4292d67e3ee Mon Sep 17 00:00:00 2001
From: rrt <unknown>
Date: Tue, 4 Apr 2000 15:14:19 +0000
Subject: [PATCH] [project @ 2000-04-04 15:14:18 by rrt] Added FIND as a symbol
 so that it can be changed on OSes which have different ideas as to what
 "find" should do.

---
 configure.in    | 2 ++
 mk/config.mk.in | 1 +
 2 files changed, 3 insertions(+)

diff --git a/configure.in b/configure.in
index 2418a6be1e5b..8eecf2159eb3 100644
--- a/configure.in
+++ b/configure.in
@@ -434,6 +434,8 @@ AC_PROG_CPP
 dnl ** figure out how to do context diffs
 FPTOOLS_PROG_DIFF
 
+dnl ** Find find command (for Win32's benefit)
+AC_PATH_PROG(FindCmd, find)
 
 dnl ** look for a decent parser generator (bison preferred)
 dnl (FPTOOLS_PROG_YACCY is AC_PROG_YACC, but with some extra testing 
diff --git a/mk/config.mk.in b/mk/config.mk.in
index 75a45107110d..f18a1e742b1c 100644
--- a/mk/config.mk.in
+++ b/mk/config.mk.in
@@ -557,6 +557,7 @@ CP			= cp
 CPP			= @CPP@
 CTAGS 			= $(ETAGS)
 RAWCPP                  = $(CPP) -undef -traditional
+FIND			= @FindCmd@
 INSTALL			= @INSTALL@
 #
 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
-- 
GitLab