Richard Quadling wrote:

You don't actually need to install cygwin to see the fault.

Create a batch file called rmdir.bat like this ...


But this is not what you have in the production makefile environment.

Here is a quick test. Create a simple makefile in your home folder. for me, it is:

      g:/cygwin/home/administrator

Makefile has:

# -----------------------
all: clean

clean:
  @echo hello world
  @md bob
  -rmdir bob /q /s
# -----------------------

I can run this under a cygwin shell or a normal DOS BOX and it works fine.

However, I agree if you type RMDIR from within a cygwin shell, then it will use the EXE version found in the bin folder which is incompatible with the Windows RMDIR/RD shell commands, switch wise.

--
Hector Santos


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

Reply via email to