the verify_tool target should check for /usr/bin/find (I errorneously did changed...
authorUlf Lamping <ulf.lamping@web.de>
Sat, 10 Dec 2005 11:14:36 +0000 (11:14 -0000)
committerUlf Lamping <ulf.lamping@web.de>
Sat, 10 Dec 2005 11:14:36 +0000 (11:14 -0000)
add a comment why we should check for exactly that version

svn path=/trunk/; revision=16753

Makefile.nmake

index 17200d1f041bfef1295a06c1308060a40949b4a7..be44d0e0dde9a1b79a1de82f78d81f6766b4c92a 100644 (file)
@@ -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     \