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:18 -0500 |
commit | 813499d93fc7e3c59090bb32f5309a9cdd476e12 (patch) | |
tree | af3fafff2594b11033dd9020a44c30e2993b8d7c | |
parent | d724892afa3e3361ffc1a31a5c05ef48f1ad0d52 (diff) | |
download | meta-virtualization-813499d93fc7e3c59090bb32f5309a9cdd476e12.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 | ||