From 0cf4a982444871ae28683986546f3590b752c651 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 30 Mar 2010 10:43:15 +0100 Subject: gcc-package-cross.inc: Only stage gcc-runtime headers for gcc-cross Signed-off-by: Richard Purdie --- meta/packages/gcc/gcc-package-cross.inc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'meta/packages/gcc') diff --git a/meta/packages/gcc/gcc-package-cross.inc b/meta/packages/gcc/gcc-package-cross.inc index 6c5650482..588427ef8 100644 --- a/meta/packages/gcc/gcc-package-cross.inc +++ b/meta/packages/gcc/gcc-package-cross.inc @@ -17,8 +17,10 @@ do_install () { done # gcc-runtime requires some headers, we stash them here - install -d ${D}${includedir}/gcc-build-internal - for f in auto-host.h gcov-iov.h gthr-default.h libgcc.mvars options.h tconfig.h tm.h; do - cp ${B}/gcc/$f ${D}${includedir}/gcc-build-internal/ - done + if [ "${PN}" == "gcc-cross" ]; then + install -d ${D}${includedir}/gcc-build-internal + for f in auto-host.h gcov-iov.h gthr-default.h libgcc.mvars options.h tconfig.h tm.h; do + cp ${B}/gcc/$f ${D}${includedir}/gcc-build-internal/ + done + fi } -- cgit v1.2.3