Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:55462 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 15700 invoked from network); 15 Sep 2011 21:49:27 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 15 Sep 2011 21:49:27 -0000 Authentication-Results: pb1.pair.com header.from=keisial@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=keisial@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 74.125.82.42 as permitted sender) X-PHP-List-Original-Sender: keisial@gmail.com X-Host-Fingerprint: 74.125.82.42 mail-ww0-f42.google.com Received: from [74.125.82.42] ([74.125.82.42:33775] helo=mail-ww0-f42.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 73/13-29375-6E2727E4 for ; Thu, 15 Sep 2011 17:49:27 -0400 Received: by wwn22 with SMTP id 22so7126366wwn.5 for ; Thu, 15 Sep 2011 14:49:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=1zcsAH7HWb5/fFZeF8VED/iOTXOXSACexyQgww1ev3Q=; b=sRyS5zFI/ZRRxkQ1YC6b+ifEc/kyjl4G9g3GZ/KdzTTyaoYREzfRRtsYywcN+G4U99 N7LLK3KeqnzzHGksBusFZrgMV8ZycxTTvuTlIxOI1BhxMeVCdr3soduWGYSgsRC3/acR clZ4648bnachO4+hgWWMDZzpy2RkYyRC73OiY= Received: by 10.227.179.14 with SMTP id bo14mr1748050wbb.90.1316123364240; Thu, 15 Sep 2011 14:49:24 -0700 (PDT) Received: from [192.168.1.26] (65.Red-83-41-242.dynamicIP.rima-tde.net. [83.41.242.65]) by mx.google.com with ESMTPS id e2sm9590672wbh.19.2011.09.15.14.49.22 (version=SSLv3 cipher=OTHER); Thu, 15 Sep 2011 14:49:22 -0700 (PDT) Message-ID: <4E72744D.3070306@gmail.com> Date: Thu, 15 Sep 2011 23:55:25 +0200 User-Agent: Thunderbird MIME-Version: 1.0 To: RQuadling@GMail.com CC: PHP internals References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] A couple of missing directories if configure.js is forgotten. From: keisial@gmail.com ("=?ISO-8859-1?Q?=C1ngel_Gonz=E1lez?=") Richard Quadling wrote: > 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. > > - @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 > > > > Richard. Shouldn't you add them to BUILD_DIRS_SUB instead?