summaryrefslogtreecommitdiffstats
path: root/recipes-extended/xen
diff options
context:
space:
mode:
authorChristopher Clark <christopher.clark6@baesystems.com>2017-08-25 18:44:52 -0700
committerBruce Ashfield <bruce.ashfield@windriver.com>2017-08-29 08:43:11 -0400
commitb757de0da6786274c8248bbe3cf2a05809f51127 (patch)
tree80fceff0f3d1d32523bd673a63c105fa1ba6bbe4 /recipes-extended/xen
parentadd137fd222b9b61d6bd5d8564c558682af89d28 (diff)
downloadmeta-virtualization-b757de0da6786274c8248bbe3cf2a05809f51127.tar.gz
xen: Only generate long-double-32.h if absent
Only copy long-double-64.h to create long-double-32.h if it is not already present. Compile tested with both ARM 32-bit build and x86 64-bit build. Signed-off-by: Christopher Clark <christopher.clark6@baesystems.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-extended/xen')
-rw-r--r--recipes-extended/xen/xen.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes-extended/xen/xen.inc b/recipes-extended/xen/xen.inc
index b429c81c..ab699873 100644
--- a/recipes-extended/xen/xen.inc
+++ b/recipes-extended/xen/xen.inc
@@ -912,7 +912,9 @@ do_configure() {
912 912
913 # do configure 913 # do configure
914 oe_runconf 914 oe_runconf
915 cp ${STAGING_INCDIR}/bits/long-double-64.h ${STAGING_INCDIR}/bits/long-double-32.h 915 if [ ! -e ${STAGING_INCDIR}/bits/long-double-32.h ]; then
916 cp ${STAGING_INCDIR}/bits/long-double-64.h ${STAGING_INCDIR}/bits/long-double-32.h
917 fi
916} 918}
917 919
918do_compile() { 920do_compile() {