summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.nmake7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.nmake b/Makefile.nmake
index 17200d1f04..be44d0e0dd 100644
--- a/Makefile.nmake
+++ b/Makefile.nmake
@@ -420,6 +420,11 @@ doxygen: doxygen.cfg doxygen-run
# Prepare build environment by downloading and installing required libraries
################################################################################
+# The required tools to build Ethereal.
+#
+# The 'find' tool is available both in \WINNT\System32 and in cygwin's /usr/bin.
+# We only need the cygwin version (for some shell scripts).
+# In the PATH, System32 is before cygwin's dir, so explicitly check for /usr/bin/find.
REQUIRED_TOOLS=\
$(CC) \
$(LINK) \
@@ -429,7 +434,7 @@ REQUIRED_TOOLS=\
$(LEX) \
env \
grep \
- find \
+ /usr/bin/find \
$(PERL) \
$(PYTHON) \
sed \