summaryrefslogtreecommitdiff
path: root/sync.profile
diff options
context:
space:
mode:
authorSergio Ahumada <sergio.ahumada@digia.com>2013-05-24 22:33:16 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-26 10:08:14 +0200
commitd3892eaf4edb8e37ab67072723b410db55edb864 (patch)
tree8261365d5bddbd08c8ab01b14467a21651363cad /sync.profile
parent1a0366fd16beb8677ef4535267fd19120402651f (diff)
downloadqttranslations-d3892eaf4edb8e37ab67072723b410db55edb864.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: I52efbaa437979b4f01e0c10cbb5d09021e8cc39f Reviewed-by: Iikka Eklund <iikka.eklund@digia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'sync.profile')
-rw-r--r--sync.profile17
1 files changed, 9 insertions, 8 deletions
diff --git a/sync.profile b/sync.profile
index 955937a..ecaea34 100644
--- a/sync.profile
+++ b/sync.profile
@@ -3,14 +3,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",
- "qtsvg" => "refs/heads/stable",
- "qtxmlpatterns" => "refs/heads/stable",
- "qtdeclarative" => "refs/heads/stable",
- "qtjsbackend" => "refs/heads/stable",
- "qtactiveqt" => "refs/heads/stable",
- "qttools" => "refs/heads/stable",
+ "qtbase" => "",
+ "qtscript" => "",
+ "qtsvg" => "",
+ "qtxmlpatterns" => "",
+ "qtdeclarative" => "",
+ "qtjsbackend" => "",
+ "qtactiveqt" => "",
+ "qttools" => "",
);