summaryrefslogtreecommitdiffstats
path: root/meta/classes/staging.bbclass
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2019-04-29 15:55:11 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-04-30 12:05:23 +0100
commit1e8cedab4410923ccd815c5991b3df0b642a36e1 (patch)
tree54385a4109b0684229457ed0bb3598b0d13d465d /meta/classes/staging.bbclass
parentd208738062e8aa2c940b23dab268f61636ccc670 (diff)
downloadpoky-1e8cedab4410923ccd815c5991b3df0b642a36e1.tar.gz
staging: add ${datadir}/gtk-doc/html to the sysroot blacklist
When api-documentation is enabled the GNOME stack builds API documentation. As ${datadir} is in SYSROOT_DIRS this documentation is in the sysroot but is never used, wasting time and space. Add ${datadir}/gtk-doc/html to the blacklist so that the generated documentation isn't in the sysroot. Note that we don't blacklist all of ${datadir}/gtk-doc because gtk-doc itself installs files there which are needed to use gtk-doc. (From OE-Core rev: 11c87952c9a71036119d509ce09f17e352e4c6d8) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/staging.bbclass')
-rw-r--r--meta/classes/staging.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass
index 062b2817c8..6bcd0b087a 100644
--- a/meta/classes/staging.bbclass
+++ b/meta/classes/staging.bbclass
@@ -27,9 +27,10 @@ SYSROOT_DIRS_BLACKLIST = " \
27 ${mandir} \ 27 ${mandir} \
28 ${docdir} \ 28 ${docdir} \
29 ${infodir} \ 29 ${infodir} \
30 ${datadir}/locale \
31 ${datadir}/applications \ 30 ${datadir}/applications \
32 ${datadir}/fonts \ 31 ${datadir}/fonts \
32 ${datadir}/gtk-doc/html \
33 ${datadir}/locale \
33 ${datadir}/pixmaps \ 34 ${datadir}/pixmaps \
34 ${libdir}/${PN}/ptest \ 35 ${libdir}/${PN}/ptest \
35" 36"