diff options
| -rw-r--r-- | meta/recipes-devtools/gcc/libgcc_4.6.bb | 20 | 
1 files changed, 10 insertions, 10 deletions
| diff --git a/meta/recipes-devtools/gcc/libgcc_4.6.bb b/meta/recipes-devtools/gcc/libgcc_4.6.bb index 9db7243531..8eac3df435 100644 --- a/meta/recipes-devtools/gcc/libgcc_4.6.bb +++ b/meta/recipes-devtools/gcc/libgcc_4.6.bb @@ -20,30 +20,30 @@ FILES_${PN}-dev = " \    ${libdir}/${TARGET_SYS}/${BINV}/*crt* \    ${libdir}/${TARGET_SYS}/${BINV}/libgcc*"  FILES_libgcov${PKGSUFFIX}-dev = " \ -  ${libdir}/${TARGET_SYS}/${BINV}/libgcov.a" - +  ${libdir}/${TARGET_SYS}/${BINV}/libgcov.a \ +  "  FILES_${PN}-dbg += "${base_libdir}/.debug/"  do_configure () {  	target=`echo ${MULTIMACH_TARGET_SYS} | sed -e s#-nativesdk##`  	install -d ${D}${base_libdir} ${D}${libdir}  	cp -fpPR ${STAGING_INCDIR_NATIVE}/gcc-build-internal-$target/* ${B} -	mkdir -p ${B}/${PN} -	cd ${B}/${PN} -	chmod a+x ${S}/${PN}/configure -	${S}/${PN}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF} +	mkdir -p ${B}/${BPN} +	cd ${B}/${BPN} +	chmod a+x ${S}/${BPN}/configure +	${S}/${BPN}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF}  }  do_compile () {  	target=`echo ${TARGET_SYS} | sed -e s#-nativesdk##` -	cd ${B}/${PN} -	oe_runmake MULTIBUILDTOP=${B}/$target/${PN}/ +	cd ${B}/${BPN} +	oe_runmake MULTIBUILDTOP=${B}/$target/${BPN}/  }  do_install () {  	target=`echo ${TARGET_SYS} | sed -e s#-nativesdk##` -	cd ${B}/${PN} -	oe_runmake 'DESTDIR=${D}' MULTIBUILDTOP=${B}/$target/${PN}/ install +	cd ${B}/${BPN} +	oe_runmake 'DESTDIR=${D}' MULTIBUILDTOP=${B}/$target/${BPN}/ install  	# Move libgcc_s into /lib  	mkdir -p ${D}${base_libdir} | 
