summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorSergio Ahumada <sergio.ahumada@digia.com>2013-05-24 22:33:51 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-26 09:06:59 +0200
commitfb2adc6de925b6045575e4cf3651356ce8f41814 (patch)
tree33e486970ad5bd8c5ccd4c3b14d76494460102e8 /Source
parentf8feaca001e36b582c6de1d2822c7e5b6a133b8e (diff)
downloadqtwebkit-fb2adc6de925b6045575e4cf3651356ce8f41814.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. If we are testing the 'stable' branch, all dependencies will point to the 'stable' branch as well. Change-Id: I8bef9c4860ad221a502411df669b4668c396a988 Reviewed-by: Iikka Eklund <iikka.eklund@digia.com>
Diffstat (limited to 'Source')
-rw-r--r--Source/sync.profile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/sync.profile b/Source/sync.profile
index 290b3dcaa..482cbcc2f 100644
--- a/Source/sync.profile
+++ b/Source/sync.profile
@@ -15,10 +15,11 @@
# 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",
- "qtxmlpatterns" => "refs/heads/stable",
- "qtdeclarative" => "refs/heads/stable",
- "qtjsbackend" => "refs/heads/stable",
+ "qtbase" => "",
+ "qtxmlpatterns" => "",
+ "qtdeclarative" => "",
+ "qtjsbackend" => "",
);