summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/packagegroup.bbclass9
1 files changed, 9 insertions, 0 deletions
diff --git a/meta/classes/packagegroup.bbclass b/meta/classes/packagegroup.bbclass
index 76a6aa5bad..e0e5b1cf65 100644
--- a/meta/classes/packagegroup.bbclass
+++ b/meta/classes/packagegroup.bbclass
@@ -33,3 +33,12 @@ python () {
33# We don't want to look at shared library dependencies for the 33# We don't want to look at shared library dependencies for the
34# dbg packages 34# dbg packages
35DEPCHAIN_DBGDEFAULTDEPS = "1" 35DEPCHAIN_DBGDEFAULTDEPS = "1"
36
37# We only need the packaging tasks - disable the rest
38do_fetch[noexec] = "1"
39do_unpack[noexec] = "1"
40do_patch[noexec] = "1"
41do_configure[noexec] = "1"
42do_compile[noexec] = "1"
43do_install[noexec] = "1"
44do_populate_sysroot[noexec] = "1"