summaryrefslogtreecommitdiff
path: root/sync.profile
diff options
context:
space:
mode:
authorSergio Ahumada <sergio.ahumada@digia.com>2013-06-17 11:14:34 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-06-17 13:49:47 +0200
commit0e7e8665dffb85bf9c554daffe38bca61a25ad3a (patch)
treec8ab75377abfa1ed1292647eaf0ce48a1c5d33f8 /sync.profile
parentaa337de18878705ffd9209e34debca5980ec2677 (diff)
downloadqtlocation-0e7e8665dffb85bf9c554daffe38bca61a25ad3a.tar.gz
sync.profile: Point dependencies to an empty string
This means that we are going to use the same branch name for the dependencies as the branch of the repository under test. The only exception is qt3d which still uses the master branch. Change-Id: If18ed7a691b9e8e32c1e9024fb241c5ee5374690 Reviewed-by: Alex <alexander.blasche@digia.com>
Diffstat (limited to 'sync.profile')
-rw-r--r--sync.profile13
1 files changed, 7 insertions, 6 deletions
diff --git a/sync.profile b/sync.profile
index 16001603..7e8d1e02 100644
--- a/sync.profile
+++ b/sync.profile
@@ -8,13 +8,14 @@
# Each of the module version specifiers can take one of the following values:
# - A specific Git revision.
# - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
+# - an empty string to use the same branch under test (dependencies will become "refs/heads/master" if we are in the master branch)
#
%dependencies = (
- "qtbase" => "refs/heads/dev",
- "qtsvg" => "refs/heads/dev",
- "qtxmlpatterns" => "refs/heads/dev",
- "qtdeclarative" => "refs/heads/dev",
- "qtjsbackend" => "refs/heads/dev",
+ "qtbase" => "",
+ "qtsvg" => "",
+ "qtxmlpatterns" => "",
+ "qtdeclarative" => "",
+ "qtjsbackend" => "",
"qt3d" => "refs/heads/master",
- "qtmultimedia" => "refs/heads/dev"
+ "qtmultimedia" => ""
);