Placing the stubs function between patch and configure steps breaks because it has dependencies which are not guranteed until the configure step.
Build error: "fatal error: gnu/stubs-32.h: No such file or directory" This patch simply moves the step between configure and compile to resolve the dependency issue. Reported-by: Machon Gregory <[email protected]> Signed-off-by: Chris Patterson <[email protected]> --- recipes-extended/xen/xen.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-extended/xen/xen.inc b/recipes-extended/xen/xen.inc index 5555ed3..d35bc3f 100644 --- a/recipes-extended/xen/xen.inc +++ b/recipes-extended/xen/xen.inc @@ -782,7 +782,7 @@ do_stubs() { fi } -addtask stubs after do_patch before do_configure +addtask stubs after do_configure before do_compile do_configure() { -- 1.7.10.4 -- _______________________________________________ meta-virtualization mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-virtualization
