[oe-commits] [openembedded-core] 01/08: staging: add ${datadir}/gtk-doc/html to the sysroot blacklist

git at git.openembedded.org git at git.openembedded.org
Mon Apr 29 22:26:52 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 11c87952c9a71036119d509ce09f17e352e4c6d8
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Mon Apr 29 15:55:11 2019 +0100

    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.
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/staging.bbclass | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass
index 062b281..6bcd0b0 100644
--- a/meta/classes/staging.bbclass
+++ b/meta/classes/staging.bbclass
@@ -27,9 +27,10 @@ SYSROOT_DIRS_BLACKLIST = " \
     ${mandir} \
     ${docdir} \
     ${infodir} \
-    ${datadir}/locale \
     ${datadir}/applications \
     ${datadir}/fonts \
+    ${datadir}/gtk-doc/html \
+    ${datadir}/locale \
     ${datadir}/pixmaps \
     ${libdir}/${PN}/ptest \
 "

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list