diff options
author | Ross Burton <ross.burton@intel.com> | 2013-05-02 14:35:29 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-08 10:20:08 +0000 |
commit | 32da30e39b3b847a80d99e1d2a527f460e33590d (patch) | |
tree | 8c709625b28c72794fa893393cc7e3a5d24a542a /meta/recipes-connectivity | |
parent | 0c73dcb7c1c369a66e4c5804fcdd19f657426a5d (diff) | |
download | openembedded-core-32da30e39b3b847a80d99e1d2a527f460e33590d.tar.gz openembedded-core-32da30e39b3b847a80d99e1d2a527f460e33590d.tar.bz2 openembedded-core-32da30e39b3b847a80d99e1d2a527f460e33590d.zip |
neard: fix libdir/libexecdir confusion
These binaries are installed to $libexecdir/nfc not $libdir/$BPN.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/neard/neard_0.15.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/neard/neard_0.15.bb b/meta/recipes-connectivity/neard/neard_0.15.bb index 8adf70cc9c..f9623106d9 100644 --- a/meta/recipes-connectivity/neard/neard_0.15.bb +++ b/meta/recipes-connectivity/neard/neard_0.15.bb @@ -43,7 +43,7 @@ do_install_append() { PACKAGES =+ "${PN}-tests" FILES_${PN}-tests = "${libdir}/${BPN}/*-test" -FILES_${PN}-dbg += "${libdir}/${BPN}/*/.debug" +FILES_${PN}-dbg += "${libexecdir}/nfc/.debug ${libdir}/${BPN}/*/.debug" RDEPENDS_${PN} = "dbus python python-dbus python-pygobject" |