Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:55452 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 48800 invoked from network); 15 Sep 2011 14:20:47 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 15 Sep 2011 14:20:47 -0000 Authentication-Results: pb1.pair.com header.from=rquadling@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=rquadling@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.216.42 as permitted sender) X-PHP-List-Original-Sender: rquadling@gmail.com X-Host-Fingerprint: 209.85.216.42 mail-qw0-f42.google.com Received: from [209.85.216.42] ([209.85.216.42:33615] helo=mail-qw0-f42.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 85/C8-29375-EB9027E4 for ; Thu, 15 Sep 2011 10:20:46 -0400 Received: by qwi4 with SMTP id 4so3288963qwi.15 for ; Thu, 15 Sep 2011 07:20:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:reply-to:from:date:message-id:subject:to:content-type; bh=nobciImAeONwwQUPpK7I+HzZk3SxBZxUPF6t9M9/UQw=; b=x5A8+i29PdiBjQxNb4WF9Sp2RwlmS33cloML93iiVO6NckJDgz/0cIXCQjhRjTRjmr Ogy+TmlfEtzatLajIRfuC/eyoP0RpkkV9FGI/cV/aBZhGrGuifg/qcyVZXi1SF0lFj1b ase9BDychd79UmTcZXNqtOj3sR8oe1NYLswEQ= Received: by 10.229.91.16 with SMTP id k16mr971619qcm.104.1316096444134; Thu, 15 Sep 2011 07:20:44 -0700 (PDT) MIME-Version: 1.0 Received: by 10.229.100.81 with HTTP; Thu, 15 Sep 2011 07:20:24 -0700 (PDT) Reply-To: RQuadling@GMail.com Date: Thu, 15 Sep 2011 15:20:24 +0100 Message-ID: To: PHP internals Content-Type: multipart/mixed; boundary=001636aa2c180af67d04acfb956b Subject: A couple of missing directories if configure.js is forgotten. From: rquadling@gmail.com (Richard Quadling) --001636aa2c180af67d04acfb956b Content-Type: text/plain; charset=UTF-8 Hi. Sometimes I remove Release prior to nmake to make sure everything builds clean. 2 directories fail to get build Release\win32 Release\devel The attached patch fixes that. Index: win32/build/Makefile =================================================================== --- win32/build/Makefile (revision 316815) +++ win32/build/Makefile (working copy) @@ -91,7 +91,7 @@ @echo Recreating build dirs @if not exist $(BUILD_DIR) mkdir $(BUILD_DIR) @cd $(BUILD_DIR) - @for %D in ($(BUILD_DIRS_SUB)) do @if not exist %D @mkdir %D > NUL + @for %D in ($(BUILD_DIRS_SUB) devel win32) do @if not exist %D @mkdir %D > NUL @if not exist $(BUILD_DIR_DEV) @mkdir $(BUILD_DIR_DEV) > NUL @cd "$(PHP_SRC_DIR)" Richard. -- Richard Quadling Twitter : EE : Zend : PHPDoc @RQuadling : e-e.com/M_248814.html : bit.ly/9O8vFY : bit.ly/lFnVea --001636aa2c180af67d04acfb956b Content-Type: text/plain; charset=US-ASCII; name="MissingDirs.patch.txt" Content-Disposition: attachment; filename="MissingDirs.patch.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_gsltt7fu0 SW5kZXg6IHdpbjMyL2J1aWxkL01ha2VmaWxlDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQotLS0gd2luMzIvYnVpbGQv TWFrZWZpbGUJKHJldmlzaW9uIDMxNjgxNSkNCisrKyB3aW4zMi9idWlsZC9NYWtlZmlsZQkod29y a2luZyBjb3B5KQ0KQEAgLTkxLDcgKzkxLDcgQEANCiAJQGVjaG8gUmVjcmVhdGluZyBidWlsZCBk aXJzCiAJQGlmIG5vdCBleGlzdCAkKEJVSUxEX0RJUikgbWtkaXIgJChCVUlMRF9ESVIpCiAJQGNk ICQoQlVJTERfRElSKQotCUBmb3IgJUQgaW4gKCQoQlVJTERfRElSU19TVUIpKSBkbyBAaWYgbm90 IGV4aXN0ICVEIEBta2RpciAlRCA+IE5VTAorCUBmb3IgJUQgaW4gKCQoQlVJTERfRElSU19TVUIp IGRldmVsIHdpbjMyKSBkbyBAaWYgbm90IGV4aXN0ICVEIEBta2RpciAlRCA+IE5VTAogCUBpZiBu b3QgZXhpc3QgJChCVUlMRF9ESVJfREVWKSBAbWtkaXIgJChCVUlMRF9ESVJfREVWKSA+IE5VTAog CUBjZCAiJChQSFBfU1JDX0RJUikiCiAJCg== --001636aa2c180af67d04acfb956b--