[PATCH] tools: Fix helpers build

Mykyta Poturai posted 1 patch 5 days, 12 hours ago
Patches applied successfully (tree, apply log)
git fetch https://gitlab.com/xen-project/patchew/xen tags/patchew/7c5cdad207571e98ad324f07c7c754f79e8ce044.1779089580.git.mykyta._5Fpoturai@epam.com
tools/helpers/Makefile | 2 ++
1 file changed, 2 insertions(+)
[PATCH] tools: Fix helpers build
Posted by Mykyta Poturai 5 days, 12 hours ago
Init helpers sometimes fail to rebuild after switching branches,
which results in runtime faults.

Fix this by adding missing DEPS_INCLUDE to the Makefile.

Signed-off-by: Mykyta Poturai <mykyta_poturai@epam.com>
---
 tools/helpers/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/helpers/Makefile b/tools/helpers/Makefile
index 8262d9e75a..11db7d8982 100644
--- a/tools/helpers/Makefile
+++ b/tools/helpers/Makefile
@@ -64,3 +64,5 @@ clean:
 	$(RM) *.o $(TARGETS) $(DEPS_RM)
 
 distclean: clean
+
+-include $(DEPS_INCLUDE)
-- 
2.51.2
Re: [PATCH] tools: Fix helpers build
Posted by Anthony PERARD 3 days, 5 hours ago
On Mon, May 18, 2026 at 07:35:43AM +0000, Mykyta Poturai wrote:
> Init helpers sometimes fail to rebuild after switching branches,
> which results in runtime faults.
> 
> Fix this by adding missing DEPS_INCLUDE to the Makefile.
> 
> Signed-off-by: Mykyta Poturai <mykyta_poturai@epam.com>

That's not really a complete fix, but that will help, and that's the
best our current build system can do.

Acked-by: Anthony PERARD <anthony.perard@vates.tech>

Thanks,


-- 
Anthony Perard | Vates XCP-ng Developer

XCP-ng & Xen Orchestra - Vates solutions

web: https://vates.tech
Re: [PATCH] tools: Fix helpers build
Posted by dmukhin@ford.com 3 days, 18 hours ago
On Mon, May 18, 2026 at 07:35:43AM +0000, Mykyta Poturai wrote:
> Init helpers sometimes fail to rebuild after switching branches,
> which results in runtime faults.
> 
> Fix this by adding missing DEPS_INCLUDE to the Makefile.
> 
> Signed-off-by: Mykyta Poturai <mykyta_poturai@epam.com>

Reviewed-by: Denis Mukhin <dmukhin@ford.com> 

> ---
>  tools/helpers/Makefile | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/tools/helpers/Makefile b/tools/helpers/Makefile
> index 8262d9e75a..11db7d8982 100644
> --- a/tools/helpers/Makefile
> +++ b/tools/helpers/Makefile
> @@ -64,3 +64,5 @@ clean:
>  	$(RM) *.o $(TARGETS) $(DEPS_RM)
>  
>  distclean: clean
> +
> +-include $(DEPS_INCLUDE)
> -- 
> 2.51.2
>