diff options
-rw-r--r-- | meta/recipes-kernel/lttng/lttng-modules_2.1.1.bb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/meta/recipes-kernel/lttng/lttng-modules_2.1.1.bb b/meta/recipes-kernel/lttng/lttng-modules_2.1.1.bb index 700c4c5760..0bbaa817ca 100644 --- a/meta/recipes-kernel/lttng/lttng-modules_2.1.1.bb +++ b/meta/recipes-kernel/lttng/lttng-modules_2.1.1.bb | |||
@@ -22,3 +22,14 @@ export KERNEL_SRC="${STAGING_KERNEL_DIR}" | |||
22 | 22 | ||
23 | 23 | ||
24 | S = "${WORKDIR}/git" | 24 | S = "${WORKDIR}/git" |
25 | |||
26 | do_install_append() { | ||
27 | # Delete empty directories to avoid QA failures if no modules were built | ||
28 | find ${D}/lib -depth -type d -empty -exec rmdir {} \; | ||
29 | } | ||
30 | |||
31 | python do_package_prepend() { | ||
32 | if not os.path.exists(os.path.join(d.getVar('D', True), 'lib/modules')): | ||
33 | bb.warn("%s: no modules were created; this may be due to CONFIG_TRACEPOINTS not being enabled in your kernel." % d.getVar('PN', True)) | ||
34 | } | ||
35 | |||