Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:25466 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 91525 invoked by uid 1010); 1 Sep 2006 08:07:34 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 91510 invoked from network); 1 Sep 2006 08:07:34 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 1 Sep 2006 08:07:34 -0000 Authentication-Results: pb1.pair.com header.from=rquadling@googlemail.com; sender-id=pass; domainkeys=good 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 64.233.166.179 as permitted sender) DomainKey-Status: good X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: rquadling@googlemail.com X-Host-Fingerprint: 64.233.166.179 py-out-1112.google.com Linux 2.4/2.6 Received: from [64.233.166.179] ([64.233.166.179:23152] helo=py-out-1112.google.com) by pb1.pair.com (ecelerity 2.1.1.8 r(12602M)) with ESMTP id A2/66-36602-24AE7F44 for ; Fri, 01 Sep 2006 04:07:31 -0400 Received: by py-out-1112.google.com with SMTP id c39so972526pyd for ; Fri, 01 Sep 2006 01:07:23 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=googlemail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=SrUQJo772HZO726ZAws2jFpHasRJt3jmYug2Fjjr6Qt1BVKFo41PTYOtX7YLsMuUfOKHJTf2LLXrTb6xqvVqKgjFRK2Ik7qVhoQSnLszHDRzi6OfQMf+WyxrhyFrx73HAg3qsrkyB9Rke9zNyhPGrXMM85KCKfG/WzL74f4GLtA= Received: by 10.35.50.5 with SMTP id c5mr2505859pyk; Fri, 01 Sep 2006 01:07:22 -0700 (PDT) Received: by 10.35.93.8 with HTTP; Fri, 1 Sep 2006 01:07:17 -0700 (PDT) Message-ID: <10845a340609010107t4c8b293fwd6226b077ea5bce4@mail.gmail.com> Date: Fri, 1 Sep 2006 09:07:17 +0100 Reply-To: RQuadling@GoogleMail.com To: "PHP Developers Mailing List" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Win32 snapshot build failing. From: rquadling@googlemail.com ("Richard Quadling") Hi. Line 2493+ of http://snaps.php.net/win32/snapshot-5.2.log cd Release_TS\php-5.2.0RC4 NMAKE : fatal error U1077: 'cd' : return code '0x1' Stop. Odd thing is that the win32/build/makedist.php copies the files to the folder correctly. There are a few blank filenames attempting to be copied in makedist.php, but nothing critical. (Patch to tidy this : http://rquadling.php1h.com/makedist.php.patch.diff.txt) Index: mkdist.php =================================================================== RCS file: /repository/php-src/win32/build/mkdist.php,v retrieving revision 1.13 diff -u -u -r1.13 mkdist.php --- mkdist.php 26 Mar 2005 21:32:20 -0000 1.13 +++ mkdist.php 1 Sep 2006 08:02:37 -0000 @@ -111,16 +111,18 @@ global $is_debug, $dist_dir; foreach ($list as $item) { - echo "Copying $item from $source_dir to $dest_dir\n"; - copy($source_dir . DIRECTORY_SEPARATOR . $item, $dest_dir . DIRECTORY_SEPARATOR . $item); - if ($is_debug) { - $itemdb = preg_replace("/\.(exe|dll|lib)$/i", ".pdb", $item); - if (file_exists("$source_dir/$itemdb")) { - copy("$source_dir/$itemdb", "$dist_dir/dev/$itemdb"); + if ('' != trim($item)) { + echo "Copying $item from $source_dir to $dest_dir\n"; + copy($source_dir . DIRECTORY_SEPARATOR . $item, $dest_dir . DIRECTORY_SEPARATOR . $item); + if ($is_debug) { + $itemdb = preg_replace("/\.(exe|dll|lib)$/i", ".pdb", $item); + if (file_exists("$source_dir/$itemdb")) { + copy("$source_dir/$itemdb", "$dist_dir/dev/$itemdb"); + } + } + if (preg_match("/\.(exe|dll)$/i", $item)) { + get_depends($source_dir . '/' . $item); } - } - if (preg_match("/\.(exe|dll)$/i", $item)) { - get_depends($source_dir . '/' . $item); } } } -- ----- Richard Quadling Zend Certified Engineer : http://zend.com/zce.php?c=ZEND002498&r=213474731 "Standing on the shoulders of some very clever giants!"