Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:37537 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 84687 invoked from network); 8 May 2008 09:04:43 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 8 May 2008 09:04:43 -0000 Authentication-Results: pb1.pair.com header.from=rquadling@googlemail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=rquadling@googlemail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain googlemail.com designates 209.85.200.168 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: rquadling@googlemail.com X-Host-Fingerprint: 209.85.200.168 wf-out-1314.google.com Received: from [209.85.200.168] ([209.85.200.168:59450] helo=wf-out-1314.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 53/F0-10216-822C2284 for ; Thu, 08 May 2008 05:04:42 -0400 Received: by wf-out-1314.google.com with SMTP id 26so644058wfd.26 for ; Thu, 08 May 2008 02:04:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=pyzxTuZ/SN4In9tspX1t3JIIOdUWTVeia09ccqf6FDc=; b=iaMYOctqgUZLTVGyyWHoIejLb+wyVql4j4S8/TJn6fdKcAlsthJOvGAd6VEMw+d1qq8IGx5p5ubTySIVkuNnQX/bUQGTIXPcaiwlgTM3tX3o+rSLemxJ+H9GrLIW7gOkDvXA5RAtlAXSDYBuqBPRdRabAY8EcRTTbbNzNyAY4wA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=fSiwoXR+nT434/kqj/+mM8fNgHyGfy+nBPsaI84W1kBHsYmxaBFjlUNCm6ZVO7a8zZxkZ4OPFPlswCXWBx3MK1C9vByfaS5cBSVJ11EHI+wezmBEVwzmKkbUqachqvJQJ6cUYpqiEWrMNrcWG0HtV3M9WQ1hHuZvVnzG73o6epQ= Received: by 10.143.36.15 with SMTP id o15mr1293400wfj.182.1210237477833; Thu, 08 May 2008 02:04:37 -0700 (PDT) Received: by 10.142.161.16 with HTTP; Thu, 8 May 2008 02:04:37 -0700 (PDT) Message-ID: <10845a340805080204i2c84a818w104cb11df0610250@mail.gmail.com> Date: Thu, 8 May 2008 10:04:37 +0100 Reply-To: RQuadling@GoogleMail.com To: "Hannes Magnusson" Cc: "internals Mailing List" In-Reply-To: <7f3ed2c30805071317l5faf1785s5e7422ea77b1bcb7@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <10845a340805070942k435c9886j267a90bb8dc44b07@mail.gmail.com> <7f3ed2c30805071317l5faf1785s5e7422ea77b1bcb7@mail.gmail.com> Subject: Re: [PHP-DEV] Win32 Makefile template patch. From: rquadling@googlemail.com ("Richard Quadling") 2008/5/7 Hannes Magnusson : > On Wed, May 7, 2008 at 6:42 PM, Richard Quadling > wrote: > > Hi. > [..] > > > The attached patch forces the use of 'rd' rather than 'rmdir'. > > Only plain/text attachments get through the list.. > > -Hannes > Basically search&replace rmdir with rd in the win32/build/Makefile Index: Makefile =================================================================== RCS file: /repository/php-src/win32/build/Makefile,v retrieving revision 1.35.2.1.2.6.2.4 diff -u -u -r1.35.2.1.2.6.2.4 Makefile --- Makefile 3 May 2008 21:12:55 -0000 1.35.2.1.2.6.2.4 +++ Makefile 7 May 2008 16:16:31 -0000 @@ -100,15 +100,15 @@ @echo Cleaning distribution build dirs @for %D in (_x $(BUILD_DIRS_SUB)) do @if exist %D @del /F /Q %D\*.* > NUL -@del /F /Q $(BUILD_DIR)\*.res $(BUILD_DIR)\*.lib $(BUILD_DIR)\*.ilk $(BUILD_DIR)\*.pdb $(BUILD_DIR)\*.exp $(PHPDEF) $(BUILD_DIR)\php-$(PHP_VERSION_STRING)-Win32.zip $(BUILD_DIR)\pecl-$(PHP_VERSION_STRING)-Win32.zip > NUL - -rmdir /s /q $(BUILD_DIR)\php-$(PHP_VERSION_STRING) + -rd /s /q $(BUILD_DIR)\php-$(PHP_VERSION_STRING) clean-pecl: @echo Cleaning PECL targets only - -rmdir /s /q $(BUILD_DIR)\pecl + -rd /s /q $(BUILD_DIR)\pecl clean-all: @echo Cleaning standard build dirs - @for %D in (_x $(BUILD_DIRS_SUB)) do @if exist %D @rmdir /s /q %D + @for %D in (_x $(BUILD_DIRS_SUB)) do @if exist %D @rd /s /q %D -@del /f /q $(BUILD_DIR)\*.res $(BUILD_DIR)\*.lib $(BUILD_DIR)\*.ilk $(BUILD_DIR)\*.pdb $(BUILD_DIR)\*.exp $(PHPDEF) $(BUILD_DIR)\*.rc $(BUILD_DIR)\*.dbg $(BUILD_DIR)\*.bin $(BUILD_DIR)\php*.dll $(BUILD_DIR)\php*.exe > NUL test: @@ -124,8 +124,8 @@ -for %T in ($(PECL_TARGETS)) do $(MAKE) /I /nologo "%T" build-dist: $(BUILD_DIR)\deplister.exe - -rmdir /s /q $(BUILD_DIR)\php-$(PHP_VERSION_STRING) - -rmdir /s /q $(BUILD_DIR)\pecl-$(PHP_VERSION_STRING) + -rd /s /q $(BUILD_DIR)\php-$(PHP_VERSION_STRING) + -rd /s /q $(BUILD_DIR)\pecl-$(PHP_VERSION_STRING) -del /f /q $(BUILD_DIR)\php-$(PHP_VERSION_STRING)-Win32.zip -del /f /q $(BUILD_DIR)\php-debug-pack-$(PHP_VERSION_STRING)-Win32.zip -del /f /q $(BUILD_DIR)\pecl-$(PHP_VERSION_STRING)-Win32.zip -- ----- Richard Quadling Zend Certified Engineer : http://zend.com/zce.php?c=ZEND002498&r=213474731 "Standing on the shoulders of some very clever giants!"