diff options
| -rw-r--r-- | meta/recipes-devtools/gcc/gcc-target.inc | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/meta/recipes-devtools/gcc/gcc-target.inc b/meta/recipes-devtools/gcc/gcc-target.inc index e1179ac292..3412aa89a8 100644 --- a/meta/recipes-devtools/gcc/gcc-target.inc +++ b/meta/recipes-devtools/gcc/gcc-target.inc @@ -104,6 +104,10 @@ FILES_${PN}-doc = "\  do_install () {  	oe_runmake 'DESTDIR=${D}' install-host +	# Info dir listing isn't interesting at this point so remove it if it exists. +	if [ -e "${D}${infodir}/dir" ]; then +		rm -f ${D}${infodir}/dir +	fi  	# Cleanup some of the ${libdir}{,exec}/gcc stuff ...  	rm -r ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/install-tools | 
