diff options
| -rw-r--r-- | meta/recipes-support/libseccomp/libseccomp_2.5.5.bb | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/meta/recipes-support/libseccomp/libseccomp_2.5.5.bb b/meta/recipes-support/libseccomp/libseccomp_2.5.5.bb index 06ba5e9c98..478e5f4289 100644 --- a/meta/recipes-support/libseccomp/libseccomp_2.5.5.bb +++ b/meta/recipes-support/libseccomp/libseccomp_2.5.5.bb | |||
| @@ -17,10 +17,12 @@ S = "${WORKDIR}/git" | |||
| 17 | 17 | ||
| 18 | inherit autotools-brokensep pkgconfig ptest features_check | 18 | inherit autotools-brokensep pkgconfig ptest features_check |
| 19 | 19 | ||
| 20 | inherit_defer ${@bb.utils.contains('PACKAGECONFIG', 'python', 'python3native', '', d)} | ||
| 21 | |||
| 20 | REQUIRED_DISTRO_FEATURES = "seccomp" | 22 | REQUIRED_DISTRO_FEATURES = "seccomp" |
| 21 | 23 | ||
| 22 | PACKAGECONFIG ??= "" | 24 | PACKAGECONFIG ??= "" |
| 23 | PACKAGECONFIG[python] = "--enable-python, --disable-python, python3" | 25 | PACKAGECONFIG[python] = "--enable-python, --disable-python, python3-cython-native" |
| 24 | 26 | ||
| 25 | DISABLE_STATIC = "" | 27 | DISABLE_STATIC = "" |
| 26 | 28 | ||
| @@ -48,9 +50,13 @@ do_install_ptest() { | |||
| 48 | for file in $(find tools/.libs/* -executable -type f); do | 50 | for file in $(find tools/.libs/* -executable -type f); do |
| 49 | install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tools | 51 | install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tools |
| 50 | done | 52 | done |
| 53 | # fix python shebang | ||
| 54 | sed -i -e 's@cmd /usr/bin/env python @cmd /usr/bin/env python3 @' ${D}/${PTEST_PATH}/tests/regression | ||
| 55 | sed -i -e 's@^#!/usr/bin/env python$@#!/usr/bin/env python3@' ${D}/${PTEST_PATH}/tests/*.py | ||
| 51 | } | 56 | } |
| 52 | 57 | ||
| 53 | FILES:${PN} = "${bindir} ${libdir}/${BPN}.so*" | 58 | FILES:${PN} = "${bindir} ${libdir}/${BPN}.so* ${PYTHON_SITEPACKAGES_DIR}/" |
| 54 | FILES:${PN}-dbg += "${libdir}/${PN}/tests/.debug/* ${libdir}/${PN}/tools/.debug" | 59 | FILES:${PN}-dbg += "${libdir}/${PN}/tests/.debug/* ${libdir}/${PN}/tools/.debug" |
| 55 | 60 | ||
| 61 | RDEPENDS:${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'python', 'python3', '', d)}" | ||
| 56 | RDEPENDS:${PN}-ptest = "coreutils bash" | 62 | RDEPENDS:${PN}-ptest = "coreutils bash" |
