summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergio Ahumada <sergio.ahumada@digia.com>2013-05-24 22:22:43 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-26 06:05:00 +0200
commitd0a20ab3ca10a62cad301d8b9d151f51fa85c3a4 (patch)
tree8828dccefe7ea8e51c03450333ecb5462dba4f3d
parent8d0159a64e7b10e8c39ade516b27a06d875bff65 (diff)
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. If we are testing the 'stable' branch, all dependencies will point to the 'stable' branch as well. Change-Id: I9bc9d2df9ce434453c652ac97bb786e6400d5af1 Reviewed-by: Iikka Eklund <iikka.eklund@digia.com>
-rw-r--r--sync.profile17
1 files changed, 9 insertions, 8 deletions
diff --git a/sync.profile b/sync.profile
index 9ad1263a..92f02601 100644
--- a/sync.profile
+++ b/sync.profile
@@ -6,14 +6,15 @@
# 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/stable",
- "qtscript" => "refs/heads/stable",
- "qtxmlpatterns" => "refs/heads/stable",
- "qtdeclarative" => "refs/heads/stable",
- "qtjsbackend" => "refs/heads/stable",
- "qtactiveqt" => "refs/heads/stable",
- "qttools" => "refs/heads/stable",
- "qtwebkit" => "refs/heads/stable",
+ "qtbase" => "",
+ "qtscript" => "",
+ "qtxmlpatterns" => "",
+ "qtdeclarative" => "",
+ "qtjsbackend" => "",
+ "qtactiveqt" => "",
+ "qttools" => "",
+ "qtwebkit" => "",
);