]> granicus.if.org Git - php/commitdiff
- #49986, fix ICU DLLs path
authorPierre Joye <pajoye@php.net>
Sat, 24 Oct 2009 19:52:23 +0000 (19:52 +0000)
committerPierre Joye <pajoye@php.net>
Sat, 24 Oct 2009 19:52:23 +0000 (19:52 +0000)
NEWS
win32/build/mkdist.php

diff --git a/NEWS b/NEWS
index 4bb014d33ab0ee97e95c6100448f33473b7555c1..79871729d3333b724d2ac3e7146e7885ca3e6f40 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,7 @@
 PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 2009, PHP 5.3.1 RC3
+- #49986 (Missing ICU DLLs on windows package). (Pierre)
 
 20 Oct 2009, PHP 5.3.1 RC2
 - Upgraded bundled sqlite to version 3.6.19. (Scott)
index 60fbac896028bc948d9d042828ccc4f71e1c6bfe..757d06c39375670df50421b6f8b35d061c1bc84d 100644 (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));
 }