diff options
Diffstat (limited to 'meta/recipes-kernel/perf/perf_3.4.bb')
-rw-r--r-- | meta/recipes-kernel/perf/perf_3.4.bb | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/meta/recipes-kernel/perf/perf_3.4.bb b/meta/recipes-kernel/perf/perf_3.4.bb index 997beb4aefd..9f3648473fb 100644 --- a/meta/recipes-kernel/perf/perf_3.4.bb +++ b/meta/recipes-kernel/perf/perf_3.4.bb @@ -9,7 +9,7 @@ as well." LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7" -PR = "r0" +PR = "r1" BUILDPERF_libc-uclibc = "no" @@ -24,6 +24,13 @@ PROVIDES = "virtual/perf" inherit kernel-arch +# needed for building the tools/perf Python bindings +inherit python-dir +export STAGING_INCDIR +export STAGING_LIBDIR +export BUILD_SYS +export HOST_SYS + S = "${STAGING_KERNEL_DIR}" B = "${WORKDIR}/${BPN}-${PV}" @@ -44,7 +51,10 @@ do_compile() { do_install() { oe_runmake DESTDIR=${D} install + oe_runmake DESTDIR=${D} install-python_ext } PACKAGE_ARCH = "${MACHINE_ARCH}" +FILES_${PN}-dbg += "${libdir}/python*/site-packages/.debug" +FILES_${PN} += "${libdir}/python*/site-packages" |