aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.nmake
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-12-10 11:14:36 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-12-10 11:14:36 +0000
commit00777013b54213cf374fec13eacc4c5844158faa (patch)
tree7edac3b8b3af5baa8dbab921a2a47d296a704750 /Makefile.nmake
parent8a5ad119bff89ab0f17b64efbb2b5b5ec0074efe (diff)
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
Diffstat (limited to 'Makefile.nmake')
-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 \