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 13:28:04 +0100 |
commit | b79e1ffa8aebf7faa9d31fe4bca706e6ce6e7060 (patch) | |
tree | 08450e69652e6fc867bb849bc8a63fd89d3a9213 /meta/recipes-support | |
parent | f03dccc7ecc053ea714dac8078b578b6f1a4e0dd (diff) | |
download | poky-b79e1ffa8aebf7faa9d31fe4bca706e6ce6e7060.tar.gz |
npth: fix multilib header conflict-npth.h
(From OE-Core rev: 445644efd08f76762ec980999e9a6e91e4e88598)
Signed-off-by: Zhixiong Chi <zhixiong.chi@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-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 | |||
15 | 15 | ||
16 | BINCONFIG = "${bindir}/npth-config" | 16 | BINCONFIG = "${bindir}/npth-config" |
17 | 17 | ||
18 | inherit autotools binconfig-disabled | 18 | inherit autotools binconfig-disabled multilib_header |
19 | 19 | ||
20 | FILES_${PN} = "${libdir}/libnpth.so.*" | 20 | FILES_${PN} = "${libdir}/libnpth.so.*" |
21 | FILES_${PN}-dev += "${bindir}/npth-config" | 21 | FILES_${PN}-dev += "${bindir}/npth-config" |
22 | 22 | ||
23 | do_install_append() { | ||
24 | oe_multilib_header npth.h | ||
25 | } | ||
26 | |||
23 | BBCLASSEXTEND = "native" | 27 | BBCLASSEXTEND = "native" |