aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xinit-repository5
1 files changed, 5 insertions, 0 deletions
diff --git a/init-repository b/init-repository
index 15dc26d9..c41f1c9c 100755
--- a/init-repository
+++ b/init-repository
@@ -579,6 +579,11 @@ sub git_clone_one_submodule
unlink($alternates_path) || confess "unlink $alternates_path: $OS_ERROR";
}
+ if ($submodule eq "qtdeclarative") { #Extra step needed to setup declarative
+ $self->exe('git', 'submodule', 'init');
+ $self->exe('git', 'submodule', 'update');
+ }
+
chdir("..") or confess "cd ..: $OS_ERROR";
return;