diff options
author | Patrick Williams <patrick@stwcx.xyz> | 2022-02-16 15:46:04 -0600 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2022-02-20 19:39:36 -0800 |
commit | a6fc2597b4137dd2d6255cb77e1b0442b1c90d80 (patch) | |
tree | da03fcf023948c9f9cce21beaadff72d5601669a | |
parent | caec0c657de7d0e5f565bd63c501ba287db5dcd8 (diff) | |
download | meta-security-a6fc2597b4137dd2d6255cb77e1b0442b1c90d80.tar.gz |
tpm2-pkcs11: fix RDEPENDS variable
The RDEPENDS variable was misspelled and as a result was never fixed up
with the `_${PN}` to `:${PN}` transition. Fix both aspects.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-tpm/recipes-tpm2/tpm2-pkcs11/tpm2-pkcs11_1.7.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-tpm/recipes-tpm2/tpm2-pkcs11/tpm2-pkcs11_1.7.0.bb b/meta-tpm/recipes-tpm2/tpm2-pkcs11/tpm2-pkcs11_1.7.0.bb index d70dbfa..177c3c3 100644 --- a/meta-tpm/recipes-tpm2/tpm2-pkcs11/tpm2-pkcs11_1.7.0.bb +++ b/meta-tpm/recipes-tpm2/tpm2-pkcs11/tpm2-pkcs11_1.7.0.bb | |||
@@ -52,5 +52,5 @@ FILES:${PN} += "\ | |||
52 | ${datadir}/p11-kit/* \ | 52 | ${datadir}/p11-kit/* \ |
53 | " | 53 | " |
54 | 54 | ||
55 | RDEPNDS_${PN} = "tpm2-tools" | 55 | RDEPENDS:${PN} = "tpm2-tools" |
56 | RDEPENDS:${PN}-tools += "${PYTHON_PN}-setuptools ${PYTHON_PN}-pyyaml ${PYTHON_PN}-cryptography ${PYTHON_PN}-pyasn1-modules" | 56 | RDEPENDS:${PN}-tools += "${PYTHON_PN}-setuptools ${PYTHON_PN}-pyyaml ${PYTHON_PN}-cryptography ${PYTHON_PN}-pyasn1-modules" |