pajoye Mon Sep 1 18:21:06 2008 UTC Modified files: /php-src/win32/build mkdist.php Log: - MFB: fix typo and icu bundling http://cvs.php.net/viewvc.cgi/php-src/win32/build/mkdist.php?r1=1.17&r2=1.18&diff_format=u Index: php-src/win32/build/mkdist.php diff -u php-src/win32/build/mkdist.php:1.17 php-src/win32/build/mkdist.php:1.18 --- php-src/win32/build/mkdist.php:1.17 Tue Aug 26 09:12:21 2008 +++ php-src/win32/build/mkdist.php Mon Sep 1 18:21:06 2008 @@ -1,4 +1,4 @@ -<?php # $Id: mkdist.php,v 1.17 2008/08/26 09:12:21 pajoye Exp $ +<?php # $Id: mkdist.php,v 1.18 2008/09/01 18:21:06 pajoye Exp $ /* piece together a windows binary distro */ $build_dir = $argv[1]; @@ -299,9 +299,9 @@ add sanity check and test if all required DLLs are present, per version This version works at least for 3.6, 3.8 and 4.0 (5.3-vc6, 5.3-vc9 and HEAD). */ -$ICU_DLLS = '../deps/bin/' . 'icudt*.dll'; +$ICU_DLLS = '../deps/bin/' . 'icu*.dll'; foreach (glob($ICU_DLLS) as $filename) { - copy($filename, "$dist_dir/" . basename($dll)); + copy($filename, "$dist_dir/" . basename($filename)); } /* and those for pecl */
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php