diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-18 13:52:29 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-18 23:53:55 +0000 |
commit | 816dc2b5acde18eeba7edb7d0c4052bd0ce47cb8 (patch) | |
tree | da6ceb64818e18eca4a6e004a31377040ce35d70 | |
parent | feaf175b6c20be4325a46dbbc9728ee1db932614 (diff) | |
download | poky-816dc2b5acde18eeba7edb7d0c4052bd0ce47cb8.tar.gz |
p11-kit: Fix builds with systemd
In systemd enabled builds this was failing with unpackaged unit files.
Fix this.
(From OE-Core rev: 81010555a29fe4ddae9a9c3abe35fcbddd8887b2)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/p11-kit/p11-kit_0.23.18.1.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-support/p11-kit/p11-kit_0.23.18.1.bb b/meta/recipes-support/p11-kit/p11-kit_0.23.18.1.bb index 03c8158ae6..19895ec269 100644 --- a/meta/recipes-support/p11-kit/p11-kit_0.23.18.1.bb +++ b/meta/recipes-support/p11-kit/p11-kit_0.23.18.1.bb | |||
@@ -20,7 +20,8 @@ GTKDOC_MESON_OPTION = 'gtk_doc' | |||
20 | FILES_${PN} += " \ | 20 | FILES_${PN} += " \ |
21 | ${libdir}/p11-kit-proxy.so \ | 21 | ${libdir}/p11-kit-proxy.so \ |
22 | ${libdir}/pkcs11/*.so \ | 22 | ${libdir}/pkcs11/*.so \ |
23 | ${libdir}/pkcs11/*.la" | 23 | ${libdir}/pkcs11/*.la \ |
24 | ${systemd_user_unitdir}/*" | ||
24 | 25 | ||
25 | # PN contains p11-kit-proxy.so, a symlink to a loadable module | 26 | # PN contains p11-kit-proxy.so, a symlink to a loadable module |
26 | INSANE_SKIP_${PN} = "dev-so" | 27 | INSANE_SKIP_${PN} = "dev-so" |