diff options
author | Mark Asselstine <mark.asselstine@windriver.com> | 2018-11-07 11:40:02 -0500 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2018-11-07 08:56:28 -0800 |
commit | b40cc1890860b15cf7a644660c5b35eaab0648d3 (patch) | |
tree | 25a2a8f826094bf69bc7f8d12df7ed24af5ddf8d /meta-xfce/recipes-xfce | |
parent | 6646362e73d97c5aae5435145ea03074a6bfb684 (diff) | |
download | meta-openembedded-b40cc1890860b15cf7a644660c5b35eaab0648d3.tar.gz |
meta-xfce: xfconf: fixup installed-vs-shipped QA issue
Since the xfconf uprev, commit 4222cac97678 [xfconf: 4.13.5 ->
4.13.6], we are getting a QA issue:
ERROR: xfconf-4.13.6-r0 do_package: QA Issue: xfconf: Files/directories were installed but not shipped in any package:
/usr/lib64/gio/modules/libxfconfgsettingsbackend.la
Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
xfconf: 1 installed and not shipped files. [installed-vs-shipped]
ERROR: xfconf-4.13.6-r0 do_package: Fatal QA errors found, failing task.
ERROR: xfconf-4.13.6-r0 do_package: Function failed: do_package
We need to include the .la file in the -dev package to avoid this.
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-xfce/recipes-xfce')
-rw-r--r-- | meta-xfce/recipes-xfce/xfconf/xfconf_4.13.6.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-xfce/recipes-xfce/xfconf/xfconf_4.13.6.bb b/meta-xfce/recipes-xfce/xfconf/xfconf_4.13.6.bb index 191d0fd78..2667ff947 100644 --- a/meta-xfce/recipes-xfce/xfconf/xfconf_4.13.6.bb +++ b/meta-xfce/recipes-xfce/xfconf/xfconf_4.13.6.bb | |||
@@ -14,3 +14,5 @@ SRC_URI[sha256sum] = "d1a3d442dae188b5a7380b5815377e5488578cdafb03ae363e9426e3b0 | |||
14 | FILES_${PN} += "${libdir}/xfce4/xfconf/xfconfd \ | 14 | FILES_${PN} += "${libdir}/xfce4/xfconf/xfconfd \ |
15 | ${libdir}/gio/modules/libxfconfgsettingsbackend.so \ | 15 | ${libdir}/gio/modules/libxfconfgsettingsbackend.so \ |
16 | ${datadir}/dbus-1/services/org.xfce.Xfconf.service" | 16 | ${datadir}/dbus-1/services/org.xfce.Xfconf.service" |
17 | |||
18 | FILES_${PN}-dev += "${libdir}/gio/modules/libxfconfgsettingsbackend.la" | ||