diff options
-rw-r--r-- | meta-oe/recipes-support/libp11/libp11_0.4.0.bb (renamed from meta-oe/recipes-support/libp11/libp11_0.3.0.bb) | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/libp11/libp11_0.3.0.bb b/meta-oe/recipes-support/libp11/libp11_0.4.0.bb index 1fb301fa33..d88006c366 100644 --- a/meta-oe/recipes-support/libp11/libp11_0.3.0.bb +++ b/meta-oe/recipes-support/libp11/libp11_0.4.0.bb | |||
@@ -9,15 +9,22 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=fad9b3332be894bab9bc501572864b29" | |||
9 | DEPENDS = "libtool openssl" | 9 | DEPENDS = "libtool openssl" |
10 | 10 | ||
11 | SRC_URI = "git://github.com/OpenSC/libp11.git" | 11 | SRC_URI = "git://github.com/OpenSC/libp11.git" |
12 | SRCREV = "6f71240991aa831f6fc2cc5431faf6ebec627ed2" | 12 | SRCREV = "22de793340ab73cafc92f8238afb51a06d8411c3" |
13 | 13 | ||
14 | S = "${WORKDIR}/git" | 14 | S = "${WORKDIR}/git" |
15 | 15 | ||
16 | inherit autotools pkgconfig | 16 | inherit autotools pkgconfig |
17 | 17 | ||
18 | # Currently, Makefile dependencies are incorrectly defined which causes build errors | ||
19 | # The number of jobs is high | ||
20 | # See https://github.com/OpenSC/libp11/issues/94 | ||
21 | PARALLEL_MAKE = "" | ||
18 | EXTRA_OECONF = "--disable-static" | 22 | EXTRA_OECONF = "--disable-static" |
19 | 23 | ||
20 | do_install_append () { | 24 | do_install_append () { |
21 | rm -rf ${D}${libdir}/*.la | 25 | rm -rf ${D}${libdir}/*.la |
22 | rm -rf ${D}${docdir}/${BPN} | 26 | rm -rf ${D}${docdir}/${BPN} |
23 | } | 27 | } |
28 | |||
29 | FILES_${PN} += "${libdir}/pkcs11${SOLIBS}" | ||
30 | FILES_${PN}-dev += "${libdir}/pkcs11${SOLIBSDEV}" | ||