1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

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

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