]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
tests/lcitool: Allow lcitool-refresh in out-of-tree builds, too
authorThomas Huth <thuth@redhat.com>
Fri, 4 Feb 2022 20:43:23 +0000 (20:43 +0000)
committerAlex Bennée <alex.bennee@linaro.org>
Wed, 9 Feb 2022 12:08:42 +0000 (12:08 +0000)
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>

tests/lcitool/Makefile.include

index cff7c0b814017495908b11b9016924a08e46b1ed..6b215adcd1e05bdf76c585d3d3184644eb09a40e 100644 (file)
@@ -13,5 +13,5 @@ lcitool:
 lcitool-help: lcitool
 
 lcitool-refresh:
-       $(call quiet-command, git submodule update --init $(SRC_PATH)/tests/lcitool/libvirt-ci)
+       $(call quiet-command, cd $(SRC_PATH) && git submodule update --init tests/lcitool/libvirt-ci)
        $(call quiet-command, $(LCITOOL_REFRESH))