aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-08-05 08:34:47 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-08-05 08:34:47 +0000
commit2a2e994cb1e4d746b6b7fe2bb527151f79a1177b (patch)
tree3327116a6072c6a74f00291143071c546a1d055e
parentf378e9ec649b273a96926734ffb88dd2550521de (diff)
verify_tools:
- not only look for the cygwin tools, but also check the MSVC tools required like cl.exe, link.exe and nmake.exe - I don't know why we should use /usr/bin/find but simply find, check for it instead. If there's a reason to use /usr/bin/find, we should use $(FIND) instead but I currently don't see a reason for this svn path=/trunk/; revision=15220
-rw-r--r--Makefile.nmake5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.nmake b/Makefile.nmake
index 12c062b7dd..032af855d3 100644
--- a/Makefile.nmake
+++ b/Makefile.nmake
@@ -403,12 +403,15 @@ doxygen: doxygen.cfg doxygen-run
################################################################################
REQUIRED_TOOLS=\
+ $(CC) \
+ $(LINK) \
+ nmake \
$(SH) \
$(YACC) \
$(LEX) \
env \
grep \
- /usr/bin/find \
+ find \
$(PERL) \
$(PYTHON) \
sed \