From: Pierre Joye Date: Mon, 1 Sep 2008 18:21:06 +0000 (+0000) Subject: - MFB: fix typo and icu bundling X-Git-Tag: BEFORE_HEAD_NS_CHANGE~495 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d7f0da33e64e7e2532c42648ad23bdf093664d07;p=php - MFB: fix typo and icu bundling --- diff --git a/win32/build/mkdist.php b/win32/build/mkdist.php index ecce8e476a..17770c9372 100644 --- a/win32/build/mkdist.php +++ b/win32/build/mkdist.php @@ -299,9 +299,9 @@ foreach ($extra_dll_deps as $dll) { 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 */