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 changed files with 1 additions and 1 deletions

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