[oe-commits] Richard Purdie : base.bbclass: Drop unneeded dependency

git version control git at git.openembedded.org
Fri Sep 30 10:36:54 UTC 2011


Module: openembedded-core.git
Branch: master
Commit: c54c1280fc0d06a53e23339c3913ec88eead13d9
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=c54c1280fc0d06a53e23339c3913ec88eead13d9

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Thu Sep 29 23:30:26 2011 +0100

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.

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/base.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index 9144f9c..57f1c3f 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -253,7 +253,7 @@ python base_eventhandler() {
 		return
 }
 
-addtask configure after do_unpack do_patch
+addtask configure after do_patch
 do_configure[dirs] = "${CCACHE_DIR} ${S} ${B}"
 do_configure[deptask] = "do_populate_sysroot"
 base_do_configure() {





More information about the Openembedded-commits mailing list