summaryrefslogtreecommitdiffstats
path: root/meta/classes/base.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-29 23:30:26 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-04 13:46:19 +0100
commitcb97f7a40daef48a5f1afd50b72540e025dc21b0 (patch)
treebf0df18e4423594098a0636ac623c81ff05e2b00 /meta/classes/base.bbclass
parent9c8b066c48f83035b2ce50e5fc3c748e8ddfb9f2 (diff)
downloadpoky-cb97f7a40daef48a5f1afd50b72540e025dc21b0.tar.gz
base.bbclass: Drop unneeded dependency
patch depends on unpack configure depends on patch We simply don't need a configure dependency on unpack. This simplifies the dependencies of every recipe slightly and should make bitbake slightly faster at resovling dependency graphs. It also makes the .dot dependency graphs slightly more readable by removing noise. (From OE-Core rev: c54c1280fc0d06a53e23339c3913ec88eead13d9) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/base.bbclass')
-rw-r--r--meta/classes/base.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index 9144f9cd84..57f1c3f4fe 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -253,7 +253,7 @@ python base_eventhandler() {
253 return 253 return
254} 254}
255 255
256addtask configure after do_unpack do_patch 256addtask configure after do_patch
257do_configure[dirs] = "${CCACHE_DIR} ${S} ${B}" 257do_configure[dirs] = "${CCACHE_DIR} ${S} ${B}"
258do_configure[deptask] = "do_populate_sysroot" 258do_configure[deptask] = "do_populate_sysroot"
259base_do_configure() { 259base_do_configure() {