diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2022-09-19 20:08:13 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-09-20 18:55:26 -0700 |
commit | 5b0583d4e948b7daa986288b2920cb4647ab597e (patch) | |
tree | 6467f415a3f9dc3e477367a03b4990c8dd31d464 | |
parent | 8308d1d6fa2d195f475666e65cea2eb1ea728ccc (diff) | |
download | meta-openembedded-5b0583d4e948b7daa986288b2920cb4647ab597e.tar.gz |
passwdqc: fix the libpasswdqc FILES setting
The actual file name is now libpasswdqc.so.1 instead of libpasswdqc.so.0.
This fixes the following error when installing passwdqc:
nothing provides libpasswdqc needed by passwdqc-2.0.2-r0
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-security/passwdqc/passwdqc_2.0.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-security/passwdqc/passwdqc_2.0.2.bb b/meta-oe/recipes-security/passwdqc/passwdqc_2.0.2.bb index de4bff8c79..8462701b31 100644 --- a/meta-oe/recipes-security/passwdqc/passwdqc_2.0.2.bb +++ b/meta-oe/recipes-security/passwdqc/passwdqc_2.0.2.bb | |||
@@ -57,7 +57,7 @@ do_install() { | |||
57 | PROVIDES += "pam-${BPN}" | 57 | PROVIDES += "pam-${BPN}" |
58 | PACKAGES =+ "lib${BPN} pam-${BPN}" | 58 | PACKAGES =+ "lib${BPN} pam-${BPN}" |
59 | 59 | ||
60 | FILES:lib${BPN} = "${base_libdir}/libpasswdqc.so.0" | 60 | FILES:lib${BPN} = "${base_libdir}/libpasswdqc.so.1" |
61 | FILES:pam-${BPN} = "${base_libdir}/security/pam_passwdqc.so" | 61 | FILES:pam-${BPN} = "${base_libdir}/security/pam_passwdqc.so" |
62 | FILES:${PN}-dbg += "${base_libdir}/security/.debug" | 62 | FILES:${PN}-dbg += "${base_libdir}/security/.debug" |
63 | 63 | ||