diff options
author | Chris Patterson <cjp256@gmail.com> | 2016-02-12 10:34:29 -0500 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2016-02-24 21:27:53 -0500 |
commit | 2e752968eaa349310843cc2434fdc2c1fb6194c9 (patch) | |
tree | 20839721f929328204276e5a7dd48259f0ea4ed5 | |
parent | 4fe6aa216ce0467039874ed01179ac4075389a63 (diff) | |
download | meta-virtualization-2e752968eaa349310843cc2434fdc2c1fb6194c9.tar.gz |
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 <mbgrego@tycho.nsa.gov>
Signed-off-by: Chris Patterson <cjp256@gmail.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r-- | recipes-extended/xen/xen.inc | 2 |
1 files changed, 1 insertions, 1 deletions
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() { | |||
782 | fi | 782 | fi |
783 | } | 783 | } |
784 | 784 | ||
785 | addtask stubs after do_patch before do_configure | 785 | addtask stubs after do_configure before do_compile |
786 | 786 | ||
787 | do_configure() { | 787 | do_configure() { |
788 | 788 | ||