summaryrefslogtreecommitdiff
path: root/win32/build/mkdist.php
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2009-10-24 19:52:23 +0000
committerPierre Joye <pajoye@php.net>2009-10-24 19:52:23 +0000
commitbcf7db5f920435781b81ef581aa42615bd46f556 (patch)
treeb768413921f98de0d4beaf1b90fae2779a72414d /win32/build/mkdist.php
parent0a8fc25b7d58f1f0f1a39793931db8ab1d9b4030 (diff)
downloadphp-git-bcf7db5f920435781b81ef581aa42615bd46f556.tar.gz
- #49986, fix ICU DLLs path
Diffstat (limited to 'win32/build/mkdist.php')
-rw-r--r--win32/build/mkdist.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/build/mkdist.php b/win32/build/mkdist.php
index 60fbac8960..757d06c393 100644
--- a/win32/build/mkdist.php
+++ b/win32/build/mkdist.php
@@ -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));
}