summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJukka Jokiniva <jukka.jokiniva@qt.io>2018-10-03 09:16:04 +0300
committerAlexandru Croitor <alexandru.croitor@qt.io>2020-09-22 11:31:59 +0000
commit21fb4bc156cb0937cf187679c7d7d1cf8dd32000 (patch)
treec8edaae4fa82e5122ab7780da7c22e1212eedebb
parent0407242291f29d59618b4117d28717c0320ae8b6 (diff)
Modify Gerrit version string to indicate that this is a Qt fork
And also: Use postfix for QtFork in version number There are tools parsing the version number and using QtFork-version breaks them. It's generally against conventions (semver). To make maintaining these changes easier, Ie1b91539c2fcb8fe66a7da119e4277a88ef4d291 was merged into this change. Change-Id: I2248e110a327ffc1bb1cf033a6c319117df12d26 (cherry picked from commit 906b52982263ec5fa06aa4d3a1d94ace9f529e5d) Reviewed-by: Jukka Jokiniva <jukka.jokiniva@qt.io>
-rw-r--r--tools/workspace_status.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/workspace_status.py b/tools/workspace_status.py
index 86df519ed5..84b548c732 100644
--- a/tools/workspace_status.py
+++ b/tools/workspace_status.py
@@ -35,7 +35,7 @@ def revision(directory, parent):
os.chdir(parent)
-print("STABLE_BUILD_GERRIT_LABEL %s" % revision(ROOT, ROOT))
+print("STABLE_BUILD_GERRIT_LABEL %s-QtFork" % revision(ROOT, ROOT))
for d in os.listdir(os.path.join(ROOT, 'plugins')):
p = os.path.join('plugins', d)
if os.path.isdir(p):