Browse Source

fix condition

pull/2188/head
Anatol Belski 10 years ago
parent
commit
c7ec36d4fa
  1. 2
      win32/build/confutils.js

2
win32/build/confutils.js

@ -1762,7 +1762,7 @@ function generate_test_php_ini()
return;
}
var ini_dir = PHP_OBJECT_OUT_DIR + ("yes" == PHP_DEBUG ? "Debug" : "Release") + (PHP_ZTS ? "_TS" : "");
var ini_dir = PHP_OBJECT_OUT_DIR + ("yes" == PHP_DEBUG ? "Debug" : "Release") + ("yes" == PHP_ZTS ? "_TS" : "");
PHP_TEST_INI_PATH = ini_dir + "\\test.ini";
if (FSO.FileExists(PHP_TEST_INI_PATH)) {

Loading…
Cancel
Save