On Wednesday 09 July 2003 21:28, Jonathan Perret wrote:
> It looks like (I seem to remember seeing this as well) 'make' tries
> to run executables directly when the command line is simple (no
> redirections) but when there are redirections it will invoke sh.exe
> to parse the command line. It should be equivalent but it seems
> sh.exe does not inherit make's PATH so it can't find nm.exe.
>
> This is a cygwin (is DKA still using cygwin ? don't remember)
> configuration issue, I can't give a specific solution right now, sorry.
set MAKE_MODE=UNIX
that instructs make to call "bash" (or sh) for its subprocesses instead of
using "command.com".
gpz