All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xen.inc: fix ordering of stubs task
@ 2016-02-12 15:34 Chris Patterson
  2016-02-18  4:26 ` Bruce Ashfield
  0 siblings, 1 reply; 6+ messages in thread
From: Chris Patterson @ 2016-02-12 15:34 UTC (permalink / raw)
  To: meta-virtualization

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 <mbgrego@tycho.nsa.gov>
Signed-off-by: Chris Patterson <cjp256@gmail.com>
---
 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



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-02-26 17:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-12 15:34 [PATCH] xen.inc: fix ordering of stubs task Chris Patterson
2016-02-18  4:26 ` Bruce Ashfield
2016-02-24 16:04   ` Bruce Ashfield
2016-02-24 18:35     ` Chris Patterson
2016-02-26  2:59     ` Doug Goldstein
2016-02-26 17:28       ` Bruce Ashfield

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.