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.
This commit is contained in:
Ciro Santilli
2018-04-19 07:32:55 +01:00
parent f618718248
commit 3fdabbda61

4
configure vendored
View File

@@ -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