gen_makefile.py: clone repos with --recurse-submodules

Change-Id: Ie305422145aff257eeb6f13d82d6a978d6c2849a
This commit is contained in:
Vadim Yanitskiy 2022-12-23 23:21:39 +07:00
parent 07ff4210f5
commit 6f84a084cd
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ def gen_makefile_clone(proj, src, src_proj, url, push_url):
.make.{proj}.clone:
@echo -e "\\n\\n\\n===== $@\\n"
test -d {src} || mkdir -p {src}
test -d {src_proj} || ( git -C {src} clone "{url}/{proj}" "{proj}" && git -C "{src}/{proj}" remote set-url --push origin "{push_url}/{proj}" )
test -d {src_proj} || ( git -C {src} clone --recurse-submodules "{url}/{proj}" "{proj}" && git -C "{src}/{proj}" remote set-url --push origin "{push_url}/{proj}" )
sync
touch $@
'''