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

- #49986, fix ICU DLLs path

This commit is contained in:
Pierre Joye
2009-10-24 19:52:23 +00:00
parent 0a8fc25b7d
commit bcf7db5f92

View File

@@ -315,7 +315,7 @@ Add ADD_DLLS to add extra DLLs like dynamic dependencies for standard
deps. For example, libenchant.dll loads libenchant_myspell.dll or
libenchant_ispell.dll
*/
$ICU_DLLS = $php_build_dir . '/icu*.dll';
$ICU_DLLS = $php_build_dir . '/bin/icu*.dll';
foreach (glob($ICU_DLLS) as $filename) {
copy($filename, "$dist_dir/" . basename($filename));
}