[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 14/25] tests/lcitool: Allow lcitool-refresh in out-of-tree bui
From: |
Alex Bennée |
Subject: |
[PATCH v2 14/25] tests/lcitool: Allow lcitool-refresh in out-of-tree builds, too |
Date: |
Tue, 1 Feb 2022 18:20:39 +0000 |
From: Thomas Huth <thuth@redhat.com>
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>
Message-Id: <20220201085554.85733-1-thuth@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
tests/lcitool/Makefile.include | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/lcitool/Makefile.include b/tests/lcitool/Makefile.include
index cff7c0b814..6b215adcd1 100644
--- a/tests/lcitool/Makefile.include
+++ b/tests/lcitool/Makefile.include
@@ -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))
--
2.30.2
- [PATCH v2 08/25] drop libxml2 checks since libxml is not actually used (for parallels), (continued)
- [PATCH v2 08/25] drop libxml2 checks since libxml is not actually used (for parallels), Alex Bennée, 2022/02/01
- [PATCH v2 12/25] docs/devel: mention our .editorconfig, Alex Bennée, 2022/02/01
- [PATCH v2 09/25] tests/lcitool: Refresh submodule and remove libxml2, Alex Bennée, 2022/02/01
- [PATCH v2 16/25] docs: remove references to TCG tracing, Alex Bennée, 2022/02/01
- [PATCH v2 13/25] gitlab: fall back to commit hash in qemu-setup filename, Alex Bennée, 2022/02/01
- [PATCH v2 07/25] tests/lcitool: Include local qemu.yml when refreshing cirrus-ci files, Alex Bennée, 2022/02/01
- [PATCH v2 15/25] block: fix FreeBSD build failure with fallocate, Alex Bennée, 2022/02/01
- [PATCH v2 05/25] MAINTAINERS: Cover lcitool submodule with build test / automation, Alex Bennée, 2022/02/01
- [PATCH v2 14/25] tests/lcitool: Allow lcitool-refresh in out-of-tree builds, too,
Alex Bennée <=
- [PATCH v2 10/25] tests: Manually remove libxml2 on MSYS2 runners, Alex Bennée, 2022/02/01
- [PATCH v2 19/25] tracing: excise the tcg related from tracetool, Alex Bennée, 2022/02/01
- [PATCH v2 21/25] contrib/plugins: add a drcov plugin, Alex Bennée, 2022/02/01
- [PATCH v2 18/25] tracing: remove the trace-tcg includes from the build, Alex Bennée, 2022/02/01
- [PATCH v2 20/25] plugins: add helper functions for coverage plugins, Alex Bennée, 2022/02/01
- [PATCH v2 22/25] tests/plugin: allow libinsn.so per-CPU counts, Alex Bennée, 2022/02/01
- [PATCH v2 24/25] target/i386: use CPU_LOG_INT for IRQ servicing, Alex Bennée, 2022/02/01
- [PATCH v2 17/25] tracing: remove TCG memory access tracing, Alex Bennée, 2022/02/01