diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2014-04-02 12:25:35 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-04 11:53:51 +0100 |
commit | de4d7c30629ffcf0b252a5e9da66cb84f000bc5f (patch) | |
tree | 47b543dfddec9c72a1fb9a27870fc45e89ab8fef /meta/recipes-devtools/gcc | |
parent | c04e085bee3aac14096bbdd3ef38ed540db2a670 (diff) | |
download | poky-de4d7c30629ffcf0b252a5e9da66cb84f000bc5f.tar.gz |
gcc-target: remove infodir
* it uses autotools but doesn't call autotools_do_install
* fixes QA warning:
gcc-4.8.2: The /usr/share/info/dir file is not meant to be shipped in a particular package.
(From OE-Core rev: 0b62f8b012d8a128f34bd85a26aa97ea939cbf64)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc')
-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 = "\ | |||
104 | 104 | ||
105 | do_install () { | 105 | do_install () { |
106 | oe_runmake 'DESTDIR=${D}' install-host | 106 | oe_runmake 'DESTDIR=${D}' install-host |
107 | # Info dir listing isn't interesting at this point so remove it if it exists. | ||
108 | if [ -e "${D}${infodir}/dir" ]; then | ||
109 | rm -f ${D}${infodir}/dir | ||
110 | fi | ||
107 | 111 | ||
108 | # Cleanup some of the ${libdir}{,exec}/gcc stuff ... | 112 | # Cleanup some of the ${libdir}{,exec}/gcc stuff ... |
109 | rm -r ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/install-tools | 113 | rm -r ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/install-tools |