aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2022-12-09 12:22:09 +0000
committerJukka Jokiniva <jukka.jokiniva@qt.io>2023-01-13 08:54:47 +0000
commit3890ffe5e1b335898c99a5b94fc5526a06f38db7 (patch)
tree860dfc43e8aa91416cdc3c3234618c87cd7d2184
parentf52e491cd9e56d0fc653fb32db1ccf78710e92dc (diff)
Don't validate the SRCREV value against the branch6.2.4
Qt modules recently lost all their release branches in their git repositories. This broke previous releases since bitbake validates that SRCREV can be found from the current branch. Add additional parameter to repo URI to stop bitbake from validating the SRCREV. Task-number: QTBUG-109319 Change-Id: Ib61164839fdbc5938a23b92ab03f3c07e945812f Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io> (cherry picked from commit 28842c8014ed2127e23f79ad0318aae60b19da7a)
-rw-r--r--recipes-qt/qt6/qt6-git.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-qt/qt6/qt6-git.inc b/recipes-qt/qt6/qt6-git.inc
index eed3ad8..40c67ce 100644
--- a/recipes-qt/qt6/qt6-git.inc
+++ b/recipes-qt/qt6/qt6-git.inc
@@ -3,7 +3,7 @@ HOMEPAGE ?= "https://www.qt.io"
QT_MODULE ?= "${BPN}"
QT_MODULE_BRANCH ?= "6.2.4"
-QT_MODULE_BRANCH_PARAM ?= "branch=${QT_MODULE_BRANCH}"
+QT_MODULE_BRANCH_PARAM ?= "branch=${QT_MODULE_BRANCH};nobranch=1"
SRC_URI = "${QT_GIT}/${QT_GIT_PROJECT}/${QT_MODULE}.git;name=${QT_MODULE};${QT_MODULE_BRANCH_PARAM};protocol=${QT_GIT_PROTOCOL}"