summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergio Ahumada <sergio.ahumada@digia.com>2013-05-24 22:41:11 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-26 09:07:04 +0200
commit40533fc252c88b18dab9124d3805d70bde0ecb5d (patch)
treee0e2c7583e6c6e88252f10e1eaec06624af8d338
parenta3c562e45448d5a512de5c8e635bf0e9cdb3efaa (diff)
downloadqtwebkit-examples-40533fc252c88b18dab9124d3805d70bde0ecb5d.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: I71e26192238cfd548a4f766d1fe469e390eea2a5 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 0ffe6b2..5a7a8e7 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",
- "qtwebkit" => "refs/heads/stable",
- "qtscript" => "refs/heads/stable",
- "qtsvg" => "refs/heads/stable",
- "qtxmlpatterns" => "refs/heads/stable",
- "qtdeclarative" => "refs/heads/stable",
- "qtjsbackend" => "refs/heads/stable",
- "qttools" => "refs/heads/stable",
+ "qtbase" => "",
+ "qtwebkit" => "",
+ "qtscript" => "",
+ "qtsvg" => "",
+ "qtxmlpatterns" => "",
+ "qtdeclarative" => "",
+ "qtjsbackend" => "",
+ "qttools" => "",
);