mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-12-15 22:55:21 +01:00
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>
This commit is contained in:
parent
add137fd22
commit
b757de0da6
|
|
@ -912,7 +912,9 @@ do_configure() {
|
|||
|
||||
# do configure
|
||||
oe_runconf
|
||||
cp ${STAGING_INCDIR}/bits/long-double-64.h ${STAGING_INCDIR}/bits/long-double-32.h
|
||||
if [ ! -e ${STAGING_INCDIR}/bits/long-double-32.h ]; then
|
||||
cp ${STAGING_INCDIR}/bits/long-double-64.h ${STAGING_INCDIR}/bits/long-double-32.h
|
||||
fi
|
||||
}
|
||||
|
||||
do_compile() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user