diff options
author | Zhixiong Chi <zhixiong.chi@windriver.com> | 2018-04-19 03:18:06 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-04 09:54:57 +0100 |
commit | 445644efd08f76762ec980999e9a6e91e4e88598 (patch) | |
tree | 1ed2ba5f2a899947ece332e5053c76d27afb0bd3 | |
parent | c61c416a6504f7e8885df3c94c839d1031920a1c (diff) | |
download | openembedded-core-445644efd08f76762ec980999e9a6e91e4e88598.tar.gz openembedded-core-445644efd08f76762ec980999e9a6e91e4e88598.tar.bz2 openembedded-core-445644efd08f76762ec980999e9a6e91e4e88598.zip |
npth: fix multilib header conflict-npth.h
Signed-off-by: Zhixiong Chi <zhixiong.chi@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-support/npth/npth_1.5.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-support/npth/npth_1.5.bb b/meta/recipes-support/npth/npth_1.5.bb index e7db6ae1b4..8f42a1a2f9 100644 --- a/meta/recipes-support/npth/npth_1.5.bb +++ b/meta/recipes-support/npth/npth_1.5.bb @@ -15,9 +15,13 @@ SRC_URI[sha256sum] = "294a690c1f537b92ed829d867bee537e46be93fbd60b16c04630fbbfcd BINCONFIG = "${bindir}/npth-config" -inherit autotools binconfig-disabled +inherit autotools binconfig-disabled multilib_header FILES_${PN} = "${libdir}/libnpth.so.*" FILES_${PN}-dev += "${bindir}/npth-config" +do_install_append() { + oe_multilib_header npth.h +} + BBCLASSEXTEND = "native" |