diff options
author | Jeremy A. Puhlman <jpuhlman@mvista.com> | 2020-02-14 20:42:51 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-15 22:42:13 +0000 |
commit | 425e235a7335c64fb53162bebe42d0f97a2f8b1d (patch) | |
tree | 3e2267d16a62690f109643d809af4652aba8079d | |
parent | 518198451fddfbd42520d9df2ff50c5979dec6eb (diff) | |
download | poky-425e235a7335c64fb53162bebe42d0f97a2f8b1d.tar.gz |
libassuan: multilib header for assuan.h
assuan.h is generated and can differ between mutlilibs.
(From OE-Core rev: 21043a168a2c68dd9a2f2f14f404b6f66fc05cf7)
Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/libassuan/libassuan_2.5.3.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-support/libassuan/libassuan_2.5.3.bb b/meta/recipes-support/libassuan/libassuan_2.5.3.bb index 6fb3d2f3a4..52b4c0f1b9 100644 --- a/meta/recipes-support/libassuan/libassuan_2.5.3.bb +++ b/meta/recipes-support/libassuan/libassuan_2.5.3.bb | |||
@@ -22,11 +22,15 @@ SRC_URI[sha256sum] = "91bcb0403866b4e7c4bc1cc52ed4c364a9b5414b3994f718c70303f7f7 | |||
22 | 22 | ||
23 | BINCONFIG = "${bindir}/libassuan-config" | 23 | BINCONFIG = "${bindir}/libassuan-config" |
24 | 24 | ||
25 | inherit autotools texinfo binconfig-disabled pkgconfig | 25 | inherit autotools texinfo binconfig-disabled pkgconfig multilib_header |
26 | 26 | ||
27 | do_configure_prepend () { | 27 | do_configure_prepend () { |
28 | # Else these could be used in preference to those in aclocal-copy | 28 | # Else these could be used in preference to those in aclocal-copy |
29 | rm -f ${S}/m4/*.m4 | 29 | rm -f ${S}/m4/*.m4 |
30 | } | 30 | } |
31 | 31 | ||
32 | do_install_append () { | ||
33 | oe_multilib_header assuan.h | ||
34 | } | ||
35 | |||
32 | BBCLASSEXTEND = "native nativesdk" | 36 | BBCLASSEXTEND = "native nativesdk" |