Fix condition to check for config.w32 in phpize (#17667)

This commit is contained in:
Shivam Mathur 2025-02-02 08:49:16 +05:30 committed by GitHub
parent e306a2e0e8
commit 0d8aebf1d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);