diff options
author | Dan McGregor <dan.mcgregor@usask.ca> | 2015-11-03 16:54:34 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-11-25 08:01:31 +0000 |
commit | 2c10bc96257a934d9431bef0c39006c7e100924d (patch) | |
tree | 573b0078d0920ad6b7a41c9169096690cccfc3e3 /meta/recipes-core | |
parent | 780971ec1b03a20e1c86f3dd3177533a32d6e79a (diff) | |
download | openembedded-core-2c10bc96257a934d9431bef0c39006c7e100924d.tar.gz openembedded-core-2c10bc96257a934d9431bef0c39006c7e100924d.tar.bz2 openembedded-core-2c10bc96257a934d9431bef0c39006c7e100924d.zip |
systemd: ignore .so filenames in systemd-doc
systemd names two manual pages for .so files ${foo}.so.2.8,
the library being named ${foo}.so.2. This hits the libdir
sanity checker:
WARNING: QA Issue: systemd-doc: found library in wrong location:
/usr/share/man/man8/libnss_mymachines.so.2.8 [libdir]
Disable the libdir sanity check for systemd-doc.
Signed-off-by: Dan McGregor <dan.mcgregor@usask.ca>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/systemd/systemd_225.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-core/systemd/systemd_225.bb b/meta/recipes-core/systemd/systemd_225.bb index a5909f5286..0b54ac86f9 100644 --- a/meta/recipes-core/systemd/systemd_225.bb +++ b/meta/recipes-core/systemd/systemd_225.bb @@ -329,6 +329,8 @@ RRECOMMENDS_${PN} += "systemd-serialgetty systemd-vconsole-setup \ os-release \ " +INSANE_SKIP_${PN}-doc += " libdir" + PACKAGES =+ "udev-dbg udev udev-hwdb" FILES_udev-dbg += "${nonarch_base_libdir}/udev/.debug" |