pajoye Mon Sep 1 18:19:58 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/win32/build mkdist.php Log: - fix typo and icu bundling http://cvs.php.net/viewvc.cgi/php-src/win32/build/mkdist.php?r1=1.13.4.1.2.4&r2=1.13.4.1.2.5&diff_format=u Index: php-src/win32/build/mkdist.php diff -u php-src/win32/build/mkdist.php:1.13.4.1.2.4 php-src/win32/build/mkdist.php:1.13.4.1.2.5 --- php-src/win32/build/mkdist.php:1.13.4.1.2.4 Tue Aug 26 09:10:39 2008 +++ php-src/win32/build/mkdist.php Mon Sep 1 18:19:58 2008 @@ -1,4 +1,4 @@ -<?php # $Id: mkdist.php,v 1.13.4.1.2.4 2008/08/26 09:10:39 pajoye Exp $ +<?php # $Id: mkdist.php,v 1.13.4.1.2.5 2008/09/01 18:19:58 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