summaryrefslogtreecommitdiffstats
path: root/scripts/qt
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-05-24 09:59:16 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-24 11:32:17 +0200
commit8251a3ad883c4bf4c044a5791fef0104d1d23e8e (patch)
treea3440380a4d1124bf937d9b7d3966fc4301ced6f /scripts/qt
parent42418641f014e1a0e6276e806a4a7c306dc4a415 (diff)
use an empty string instead of @same
it's less arbitrary and easier to edit. Change-Id: Ib9e7ad35268082775b959ae5afb57fee1316d3f7 Reviewed-by: Tony Sarajärvi <tony.sarajarvi@digia.com> Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com>
Diffstat (limited to 'scripts/qt')
-rwxr-xr-xscripts/qt/qtmod_test.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qt/qtmod_test.pl b/scripts/qt/qtmod_test.pl
index 94299fc3..a48e2008 100755
--- a/scripts/qt/qtmod_test.pl
+++ b/scripts/qt/qtmod_test.pl
@@ -737,7 +737,7 @@ sub set_module_refs
# Also, this code assumes that init-repository always uses `origin' as the remote.
while ( my ($module, $ref) = each %module_to_ref ) {
local $CWD = catfile( $qt_dir, $module );
- $ref = $qt_ref if ($ref eq '@same');
+ $ref = $qt_ref if ($ref eq '');
# FIXME how do we guarantee we have this SHA1?
# If it's not reachable from a branch obtained from a default `clone', it could be missing.