ab4f987c4c
When running "make lcitool-refresh" in an out-of-tree build, it currently fails with an error message from git like this: fatal: not a git repository (or any parent up to mount point /) Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set). Fix it by changing to the source directory first before updating the submodule. Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20220201085554.85733-1-thuth@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20220204204335.1689602-15-alex.bennee@linaro.org>
18 lines
465 B
Makefile
18 lines
465 B
Makefile
|
|
LCITOOL_REFRESH = $(SRC_PATH)/tests/lcitool/refresh
|
|
|
|
lcitool:
|
|
@echo 'Manage build environment manifests'
|
|
@echo
|
|
@echo 'Available targets:'
|
|
@echo
|
|
@echo ' lcitool: Print this help.'
|
|
@echo ' lcitool-refresh: Re-generate all build environment manifests.'
|
|
@echo
|
|
|
|
lcitool-help: lcitool
|
|
|
|
lcitool-refresh:
|
|
$(call quiet-command, cd $(SRC_PATH) && git submodule update --init tests/lcitool/libvirt-ci)
|
|
$(call quiet-command, $(LCITOOL_REFRESH))
|