tool/depot: pass make flags to dependencies cmd

This patch harmonizes the tool/depot/download with the version of the
Goa tool.
This commit is contained in:
Norman Feske 2022-05-17 14:28:59 +02:00 committed by Christian Helmuth
parent 2691f2073a
commit 0cffda3cfe

View File

@ -34,7 +34,7 @@ download:
$(VERBOSE)\
while true; do \
if $(DEPENDENCIES_CMD) > /dev/null 2> /dev/null; then break; fi; \
missing_deps=`$(DEPENDENCIES_CMD) 2> /dev/null | sed -n "/^ /s/ *//p"`; \
missing_deps=`$(MAKE) -f $(DEPENDENCIES_CMD) 2> /dev/null | sed -n "/^ /s/ *//p"`; \
$(DOWNLOAD_CMD) $$missing_deps || break; \
done;