From 978131d6d50c29df51bb64789d1bcd3d037459a8 Mon Sep 17 00:00:00 2001 From: Tinny Ng <tng@apache.org> Date: Thu, 31 May 2001 14:46:43 +0000 Subject: [PATCH] Fix the name of ICU dll. git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@172700 13f79535-47bb-0310-9956-ffa450edef68 --- scripts/packageBinaries.pl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/packageBinaries.pl b/scripts/packageBinaries.pl index 95a86f4cd..cda152ba1 100644 --- a/scripts/packageBinaries.pl +++ b/scripts/packageBinaries.pl @@ -265,7 +265,12 @@ if ($platform =~ m/Windows/ || $platform =~ m/CYGWIN/) { # Copy the ICU dlls and libs psystem("cp -fv $ICUROOT/bin/icuuc18.dll $targetdir/bin"); psystem("cp -fv $ICUROOT/bin/icuuc18d.dll $targetdir/bin"); + + // it seems icudt18*.DLL is generated (upper case dll) + // but just case, try lower case .dll as well + psystem("cp -fv $ICUROOT/source/data/icudt18*.DLL $targetdir/bin"); psystem("cp -fv $ICUROOT/source/data/icudt18*.dll $targetdir/bin"); + psystem("cp -fv $ICUROOT/source/data/icudata.lib $targetdir/lib"); psystem("cp -fv $ICUROOT/lib/icuuc.lib $targetdir/lib"); -- GitLab