aboutsummaryrefslogtreecommitdiffstats
path: root/packaging-tools/mkqt5bld.py
diff options
context:
space:
mode:
authorIikka Eklund <iikka.eklund@theqtcompany.com>2014-11-05 08:56:52 +0200
committerAntti Kokko <antti.kokko@digia.com>2014-11-05 14:54:01 +0100
commit9ca45d289a37ad1433bf92065bfd6b9b1a2d8ea2 (patch)
tree98fdbfcb10a1ef53c3bfafe64e1896aa2c2396e4 /packaging-tools/mkqt5bld.py
parent4e2eaabe2ba373e0758e37a71af02bbcc866766e (diff)
Fix ICU build in Qt5 release builds
Change-Id: I7b39aa82c9b4c1ca583e6ac205858132f1c2fd1e Reviewed-by: Antti Kokko <antti.kokko@digia.com>
Diffstat (limited to 'packaging-tools/mkqt5bld.py')
-rw-r--r--packaging-tools/mkqt5bld.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging-tools/mkqt5bld.py b/packaging-tools/mkqt5bld.py
index 9bf1b3b6e..8ef19ae4f 100644
--- a/packaging-tools/mkqt5bld.py
+++ b/packaging-tools/mkqt5bld.py
@@ -460,8 +460,8 @@ def build_qmlpuppets():
install_root_path = MAKE_INSTALL_ROOT_DIR + os.sep + ESSENTIALS_INSTALL_DIR_NAME + prfx_path
qmake_executable_path = [qmake_executable_path, '-after', 'DESTDIR=' + os.path.join(install_root_path, 'bin')]
- bldinstallercommon.do_execute_sub_process(qmake_executable_path, qmlpuppet_dir, QT_BUILD_OPTIONS.strict_mode)
- bldinstallercommon.do_execute_sub_process(cmd_args.split(' '), qmlpuppet_dir, QT_BUILD_OPTIONS.strict_mode)
+ bldinstallercommon.do_execute_sub_process(qmake_executable_path, qmlpuppet_dir, QT_BUILD_OPTIONS.strict_mode, False, QT_BUILD_OPTIONS.system_env)
+ bldinstallercommon.do_execute_sub_process(cmd_args.split(' '), qmlpuppet_dir, QT_BUILD_OPTIONS.strict_mode, False, QT_BUILD_OPTIONS.system_env)
print_wrap('--------------------------------------------------------------------')