mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Fix condition to check for config.w32 in phpize (#17667)
This commit is contained in:
parent
e306a2e0e8
commit
0d8aebf1d9
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ if (buildconf_process_args() == 0) {
|
|||
WScript.Quit(3);
|
||||
}
|
||||
|
||||
if (FSO.FileExists("config.w32")) {
|
||||
if (!FSO.FileExists("config.w32")) {
|
||||
STDERR.WriteLine("Cannot find config.w32");
|
||||
STDERR.WriteLine("Must be run from the root of the extension source");
|
||||
WScript.Quit(10);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue