Fix build problem with GCC-4.3.3 on PowerPC

Signed-off-by: Gary Thomas <gary@mlbassoc.com>
This commit is contained in:
Gary Thomas 2010-05-04 05:59:12 -06:00 committed by Joshua Lock
parent e150e90f0a
commit 28ca131ebe
1 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,10 @@ do_install () {
for f in *.h *.c libgcc.mvars; do
cp ${B}/gcc/$f ${D}${includedir}/gcc-build-internal/
done
# Special for PowerPC (and possibly others)
if [ -f ${B}/gcc/tramp.S ]; then
cp ${B}/gcc/*.S ${D}${includedir}/gcc-build-internal/
fi
if [ -f libgcc.mvars]; then
cp ${B}/gcc/libgcc.mvars ${D}${includedir}/gcc-build-internal/
fi