diff options
-rw-r--r-- | meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.2.2.bb (renamed from meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.2.0.bb) | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.2.0.bb b/meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.2.2.bb index da096c9339..047f701102 100644 --- a/meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.2.0.bb +++ b/meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.2.2.bb | |||
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://src/engine_pkcs11.h;startline=1;endline=26;md5=973a19 | |||
10 | DEPENDS = "openssl libp11" | 10 | DEPENDS = "openssl libp11" |
11 | 11 | ||
12 | SRC_URI = "git://github.com/OpenSC/engine_pkcs11.git" | 12 | SRC_URI = "git://github.com/OpenSC/engine_pkcs11.git" |
13 | SRCREV = "6909d6761c8820e1750fa0bf4fa8532c82f34e35" | 13 | SRCREV = "132fcf2c8b319f9f4b2ebdc8dcb54ff496dc0519" |
14 | 14 | ||
15 | S = "${WORKDIR}/git" | 15 | S = "${WORKDIR}/git" |
16 | 16 | ||
@@ -18,12 +18,14 @@ inherit autotools pkgconfig | |||
18 | 18 | ||
19 | EXTRA_OECONF = "\ | 19 | EXTRA_OECONF = "\ |
20 | --disable-static \ | 20 | --disable-static \ |
21 | --libdir ${libdir}/openssl \ | 21 | --libdir ${libdir}/engines \ |
22 | " | 22 | " |
23 | 23 | ||
24 | do_install_append () { | 24 | do_install_append () { |
25 | rm -f ${D}${libdir}/openssl/engines/libpkcs11.la | 25 | rm -f ${D}${libdir}/engines/libpkcs11.la |
26 | } | 26 | } |
27 | 27 | ||
28 | FILES_${PN} += "${libdir}/openssl/engines/libpkcs11.so*" | 28 | FILES_${PN} += "${libdir}/engines/libpkcs11${SOLIBSDEV}" |
29 | FILES_${PN}-dbg += "${libdir}/openssl/engines/.debug/*" | 29 | FILES_${PN}-dbg += "${libdir}/engines/.debug/" |
30 | |||
31 | RDEPENDS_${PN} += "openssl libp11 opensc" | ||