Skip to content
Snippets Groups Projects
Commit 978131d6 authored by Tinny Ng's avatar Tinny Ng
Browse files

Fix the name of ICU dll.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@172700 13f79535-47bb-0310-9956-ffa450edef68
parent f24a3da3
No related branches found
No related tags found
No related merge requests found
......@@ -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");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment