From 0d8aebf1d9ad49e12d98a681603035e6914d9737 Mon Sep 17 00:00:00 2001 From: Shivam Mathur Date: Sun, 2 Feb 2025 08:49:16 +0530 Subject: [PATCH] Fix condition to check for config.w32 in phpize (#17667) --- win32/build/phpize.js.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/build/phpize.js.in b/win32/build/phpize.js.in index fefa5195421..0f7a8ab1812 100644 --- a/win32/build/phpize.js.in +++ b/win32/build/phpize.js.in @@ -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);