aboutsummaryrefslogtreecommitdiffstats
path: root/packaging-tools/bld_qtcreator.py
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2017-03-16 15:27:34 +0100
committerEike Ziller <eike.ziller@qt.io>2017-03-16 14:29:08 +0000
commitfd1763667cf389a2e536eb3f907c598a0f88cc2b (patch)
tree54cdf361d681bfc8b6980b80890983179feb2aba /packaging-tools/bld_qtcreator.py
parent8153881480952f764a3d6d30a3b4f339a00a1ce9 (diff)
Qt Creator: Fix building cdbextension with python
Change-Id: I91f20316e548e4523a3913164b92cd629f16c75f Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'packaging-tools/bld_qtcreator.py')
-rwxr-xr-xpackaging-tools/bld_qtcreator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging-tools/bld_qtcreator.py b/packaging-tools/bld_qtcreator.py
index 5e0274568..48e8f6ebf 100755
--- a/packaging-tools/bld_qtcreator.py
+++ b/packaging-tools/bld_qtcreator.py
@@ -298,7 +298,7 @@ if __name__ == "__main__":
# cdbextension
cdbextQmakeArgs = [qmakeBinary, 'QTC_PREFIX=' + cdbextInstallDirectory, 'CONFIG+=' + buildType]
if callerArguments.pythonpath:
- qmakeCommandArguments.append('PYTHON_INSTALL_DIR=' + callerArguments.pythonpath)
+ cdbextQmakeArgs.append('PYTHON_INSTALL_DIR=' + callerArguments.pythonpath)
runCommand(cdbextQmakeArgs + [cdbextSourceDirectory],
cdbextBuildDirectory, callerArguments = callerArguments, init_environment = environment)
runBuildCommand(currentWorkingDirectory = cdbextBuildDirectory,