From 813499d93fc7e3c59090bb32f5309a9cdd476e12 Mon Sep 17 00:00:00 2001 From: Chris Patterson Date: Fri, 12 Feb 2016 10:34:29 -0500 Subject: xen.inc: fix ordering of stubs task 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 Signed-off-by: Chris Patterson Signed-off-by: Bruce Ashfield --- 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 5555ed32..d35bc3f4 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() { -- cgit v1.2.3-54-g00ecf