aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2018-02-08 19:27:24 +0100
committerSimo Fält <simo.falt@qt.io>2018-02-15 16:04:58 +0000
commit002b0d6da1c717d54a5a3a0967e41bc7c6213e3e (patch)
tree31948fdaa3a0fdb55c457159c8f188cfd14aab4c
parentbe8585ab74654943b461e81cbf0982d04a1ca9bb (diff)
Fix typo in libicu detection
When libicu libraries are present in the qt lib dir, this caused trying to copy the files into the same folder where they are located which will obviously fail. Change-Id: Ibcabec2e44dac70e0c3c56e52ff0c8ac7749dbc0 Reviewed-by: Fredrik Averpil <fredrik@averpil.com> Reviewed-by: Simo Fält <simo.falt@qt.io>
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 673c11e81..81e026c6a 100644
--- a/setup.py
+++ b/setup.py
@@ -1193,7 +1193,7 @@ class pyside_build(_build):
# Check if ICU libraries were copied over to the destination Qt libdir.
resolved_destination_lib_dir = destination_lib_dir.format(**vars)
- maybe_icu_libs = find_files_using_glob(resolved_destination_lib_dir, "libcu*")
+ maybe_icu_libs = find_files_using_glob(resolved_destination_lib_dir, "libicu*")
# If no ICU libraries are present in the Qt libdir (like when Qt is built against system
# ICU, or in the Coin CI where ICU libs are in a different directory) try to