Richard Quadling:
> Effectively nmake is not respecting the shell to run internal commands.
> 
> As you can see (hopefully), rmdir is a SHELL command, even if an
> executable exists with the same name and that executable is in the
> path.
> 
> The issue is that nmake doesn't respect the shell command until after
> it has done the search via the path.

If you want nmake to use command.exe's built-in command, then tell
nmake to do so:

    command/c rmdir...

instead of

    rmdir...
    rd...

Making it explicit with command/c is more robust than trying to
avoid PATH: collisions.

        Wietse

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to