aboutsummaryrefslogtreecommitdiffstats
path: root/packaging-tools/mkqt5bld.py
diff options
context:
space:
mode:
authorIikka Eklund <iikka.eklund@theqtcompany.com>2014-10-22 08:38:38 +0300
committerIikka Eklund <iikka.eklund@theqtcompany.com>2014-10-22 12:18:43 +0200
commitc5e5debf74df7e1387115b7ab2add8ae97a0cd96 (patch)
tree9436d3816e844e16651fc84d1cbcc8a6ec6e8038 /packaging-tools/mkqt5bld.py
parent6d80ebef2f8eae606be0973e3b79f4859444f5fa (diff)
Fix bug in qt5 build script
Caused error on Windows. Change-Id: If213a05ada53bbd4d804ec2ac40be9fd47137d17 Reviewed-by: Jani Heikkinen <jani.heikkinen@digia.com>
Diffstat (limited to 'packaging-tools/mkqt5bld.py')
-rw-r--r--packaging-tools/mkqt5bld.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging-tools/mkqt5bld.py b/packaging-tools/mkqt5bld.py
index 43ccdb052..354759571 100644
--- a/packaging-tools/mkqt5bld.py
+++ b/packaging-tools/mkqt5bld.py
@@ -615,7 +615,7 @@ def clean_up():
if bldinstallercommon.is_win_platform():
for name in os.listdir(MAKE_INSTALL_ROOT_DIR):
dir_name = os.path.join(MAKE_INSTALL_ROOT_DIR, name)
- lib_path = bldinstallercommon.locate_directory(base_path_essentials, 'lib')
+ lib_path = bldinstallercommon.locate_directory(dir_name, 'lib')
if lib_path:
bldinstallercommon.delete_files_by_type_recursive(lib_path, '\\.dll')
print_wrap('--------------------------------------------------------------------')