From 00777013b54213cf374fec13eacc4c5844158faa Mon Sep 17 00:00:00 2001 From: Ulf Lamping Date: Sat, 10 Dec 2005 11:14:36 +0000 Subject: the verify_tool target should check for /usr/bin/find (I errorneously did changed it a while ago) add a comment why we should check for exactly that version svn path=/trunk/; revision=16753 --- Makefile.nmake | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Makefile.nmake') 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 \ -- cgit v1.2.1