summaryrefslogtreecommitdiffstats
path: root/meta/packages/gcc/gcc-package-cross.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/gcc/gcc-package-cross.inc')
-rw-r--r--meta/packages/gcc/gcc-package-cross.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/packages/gcc/gcc-package-cross.inc b/meta/packages/gcc/gcc-package-cross.inc
index 588427ef85..c3ea5f93c4 100644
--- a/meta/packages/gcc/gcc-package-cross.inc
+++ b/meta/packages/gcc/gcc-package-cross.inc
@@ -17,9 +17,9 @@ do_install () {
17 done 17 done
18 18
19 # gcc-runtime requires some headers, we stash them here 19 # gcc-runtime requires some headers, we stash them here
20 if [ "${PN}" == "gcc-cross" ]; then 20 if [ "${PN}" == "gcc-cross" -o "${PN}" == "gcc-crosssdk" ]; then
21 install -d ${D}${includedir}/gcc-build-internal 21 install -d ${D}${includedir}/gcc-build-internal
22 for f in auto-host.h gcov-iov.h gthr-default.h libgcc.mvars options.h tconfig.h tm.h; do 22 for f in *.h *.c libgcc.mvars; do
23 cp ${B}/gcc/$f ${D}${includedir}/gcc-build-internal/ 23 cp ${B}/gcc/$f ${D}${includedir}/gcc-build-internal/
24 done 24 done
25 fi 25 fi