Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:37566 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 89062 invoked from network); 9 May 2008 12:04:11 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 9 May 2008 12:04:11 -0000 Authentication-Results: pb1.pair.com smtp.mail=hsantos@isdg.net; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=hsantos@isdg.net; sender-id=pass Received-SPF: pass (pb1.pair.com: domain isdg.net designates 208.247.131.9 as permitted sender) X-PHP-List-Original-Sender: hsantos@isdg.net X-Host-Fingerprint: 208.247.131.9 ntbbs.winserver.com Windows NT 4.0 (older) Received: from [208.247.131.9] ([208.247.131.9:1807] helo=winserver.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id B3/72-12016-ABD34284 for ; Fri, 09 May 2008 08:04:11 -0400 Received: from mail.winserver.com ([208.247.131.9]) by winserver.com (Wildcat! SMTP Router v6.3.452.5) for internals@lists.php.net; Fri, 09 May 2008 08:02:52 -0400 Received: from mail.winserver.com ([208.247.131.9]) by winserver.com (Wildcat! SMTP v6.3.452.5) with ESMTP id 775917718; Fri, 09 May 2008 08:02:51 -0400 Message-ID: <48243D86.8000104@isdg.net> Date: Fri, 09 May 2008 08:03:18 -0400 Organization: Santronics Software, Inc. User-Agent: Thunderbird 2.0.0.0 (Windows/20070326) MIME-Version: 1.0 To: internals Mailing List References: <10845a340805070942k435c9886j267a90bb8dc44b07@mail.gmail.com> <7f3ed2c30805071317l5faf1785s5e7422ea77b1bcb7@mail.gmail.com> <10845a340805080204i2c84a818w104cb11df0610250@mail.gmail.com> <013301c8b11b$22c24710$4001a8c0@foxbox> <10845a340805080805s53314162ybc23fca6c0b781e5@mail.gmail.com> <015501c8b125$0340e4f0$4001a8c0@foxbox> <10845a340805090324l5abab0ecx7e9ebe2ad39fbcce@mail.gmail.com> <008d01c8b1c2$1a67c840$4001a8c0@foxbox> <10845a340805090359w3b515266pef5892ebd61b32d3@mail.gmail.com> In-Reply-To: <10845a340805090359w3b515266pef5892ebd61b32d3@mail.gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] Win32 Makefile template patch. From: hsantos@isdg.net (Hector Santos) 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