aboutsummaryrefslogtreecommitdiffstats
path: root/packaging-tools/bld_qtcreator.py
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2017-04-21 15:43:39 +0200
committerEike Ziller <eike.ziller@qt.io>2017-05-02 08:59:48 +0000
commit7fa3f4f73f8bdfbe9bbd9bdc42ca22d6bc197907 (patch)
tree54d0612c211f35bf97938daaa30a0f5a9740f8b5 /packaging-tools/bld_qtcreator.py
parent05ba27116a907d4085b3aba3d9e62f07a9b5dd0e (diff)
QtCreator: Remove no longer used version description parameter
It is now set in the Qt Creator build files directly Change-Id: I8bab1ccb8af4638e2d884c98e6f460f1261592e1 Reviewed-by: Iikka Eklund <iikka.eklund@qt.io>
Diffstat (limited to 'packaging-tools/bld_qtcreator.py')
-rwxr-xr-xpackaging-tools/bld_qtcreator.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/packaging-tools/bld_qtcreator.py b/packaging-tools/bld_qtcreator.py
index f24e1f43c..5242bafc3 100755
--- a/packaging-tools/bld_qtcreator.py
+++ b/packaging-tools/bld_qtcreator.py
@@ -149,7 +149,6 @@ if __name__ == "__main__":
formatter_class=argparse.RawTextHelpFormatter)
add_common_commandline_arguments(parser)
parser.add_argument('--qt5path', help="here it expects a compiled Qt5", required=True)
- parser.add_argument('--versiondescription', help="version description to be shown in the about dialog, e.g. 'pre-2.7.2")
if bldinstallercommon.is_mac_platform():
parser.add_argument('--keychain_unlock_script', help="script for unlocking the keychain used for signing")
parser.epilog += " --keychain_unlock_script $HOME/unlock-keychain.sh"
@@ -257,9 +256,6 @@ if __name__ == "__main__":
qmakeCommandArguments += " QTC_SKIP_CDBEXT=1"
qmakeCommandArguments += " QTC_SKIP_WININTERRUPT=1"
- if callerArguments.versiondescription:
- qmakeCommandArguments += " DEFINES+=IDE_VERSION_DESCRIPTION={0}".format(callerArguments.versiondescription)
-
runCommand("{0} {1}".format(qmakeBinary, qmakeCommandArguments), qtCreatorBuildDirectory,
callerArguments = callerArguments, init_environment = environment)