1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 17:19:20 +00:00

gcc-cross: Fix install path typo.

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
This commit is contained in:
Dongxiao Xu
2010-06-08 17:09:33 +08:00
parent 1a53b52071
commit f8c0b93562
+1 -1
View File
@@ -18,7 +18,7 @@ do_install () {
# gcc-runtime requires some headers, we stash them here
if [ "${PN}" == "gcc-cross" -o "${PN}" == "gcc-crosssdk" ]; then
install -d ${D}${includedir}/gcc-build-internal
install -d ${D}${includedir}/gcc-build-internal-${TARGET_SYS}
for f in *.h *.c libgcc.mvars; do
cp ${B}/gcc/$f ${D}${includedir}/gcc-build-internal-${TARGET_SYS}/
done