From 3fdabbda61a8f0a5d97df13f204008a84cc3e6a2 Mon Sep 17 00:00:00 2001 From: Ciro Santilli Date: Thu, 19 Apr 2018 07:32:55 +0100 Subject: [PATCH] configure: updated submodules recursively Otherwise, on the git module update fallback, QEMU's submodules don't get updated. Also add a --recursive to the main qemu clone, just in case they add submodules to the submodules in the future. --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 5ea7842..4b4d266 100755 --- a/configure +++ b/configure @@ -107,7 +107,7 @@ fi git submodule update --depth 1 $gitjobs --init -- $submodules if "$qemu"; then cd qemu - git submodule update --init + git submodule update --init --recursive fi ) & -wait $! || git submodule update --init -- $submodules +wait $! || git submodule update --init --recursive -- $submodules