Re: [PHP-DEV] A couple of missing directories if configure.js is forgotten.

2011-09-16 Thread Richard Quadling
2011/9/15 Ángel González : > 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_D

Re: [PHP-DEV] A couple of missing directories if configure.js is forgotten.

2011-09-16 Thread Richard Quadling
Sure thing. https://bugs.php.net/bug.php?id=55709 and https://bugs.php.net/bug.php?id=55710 2011/9/15 Pierre Joye : > hi Richard, > > Can you open a bug for each of your patches please? Thanks! > > 2011/9/15 Ángel González : >> Richard Quadling wrote: >>> >>> Hi. >>> >>> Sometimes I remove Rele

Re: [PHP-DEV] A couple of missing directories if configure.js is forgotten.

2011-09-15 Thread Pierre Joye
hi Richard, Can you open a bug for each of your patches please? Thanks! 2011/9/15 Ángel González : > 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\deve

Re: [PHP-DEV] A couple of missing directories if configure.js is forgotten.

2011-09-15 Thread Ángel González
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

[PHP-DEV] A couple of missing directories if configure.js is forgotten.

2011-09-15 Thread Richard Quadling
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/Makefil