summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-02 12:27:46 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-04 14:48:13 +0100
commit5c581b2610cb84362c00ee32754a87acfd15a64d (patch)
treed9bacdd6b88fb5f3ba2384d0c56181a5bdfe231c
parent024d587555195f8d26666e9d8659aec0a5d03796 (diff)
downloadpoky-5c581b2610cb84362c00ee32754a87acfd15a64d.tar.gz
meta/classes: Update recrdeptask fields for recursive dependency handling changes in bitbake
This also deletes the buildall task since I seen usecases for it. (From OE-Core rev: 8229fb5d7205f5e5b198ab2860fbcc02054476eb) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/distrodata.bbclass8
-rw-r--r--meta/classes/recipe_sanity.bbclass3
-rw-r--r--meta/classes/utility-tasks.bbclass10
3 files changed, 7 insertions, 14 deletions
diff --git a/meta/classes/distrodata.bbclass b/meta/classes/distrodata.bbclass
index 5b10eac8b5..7b212c9452 100644
--- a/meta/classes/distrodata.bbclass
+++ b/meta/classes/distrodata.bbclass
@@ -177,7 +177,7 @@ python do_distrodata() {
177} 177}
178 178
179addtask distrodataall after do_distrodata 179addtask distrodataall after do_distrodata
180do_distrodataall[recrdeptask] = "do_distrodata" 180do_distrodataall[recrdeptask] = "do_distrodataall do_distrodata"
181do_distrodataall[nostamp] = "1" 181do_distrodataall[nostamp] = "1"
182do_distrodataall() { 182do_distrodataall() {
183 : 183 :
@@ -634,7 +634,7 @@ python do_checkpkg() {
634} 634}
635 635
636addtask checkpkgall after do_checkpkg 636addtask checkpkgall after do_checkpkg
637do_checkpkgall[recrdeptask] = "do_checkpkg" 637do_checkpkgall[recrdeptask] = "do_checkpkgall do_checkpkg"
638do_checkpkgall[nostamp] = "1" 638do_checkpkgall[nostamp] = "1"
639do_checkpkgall() { 639do_checkpkgall() {
640 : 640 :
@@ -677,7 +677,7 @@ python do_distro_check() {
677} 677}
678 678
679addtask distro_checkall after do_distro_check 679addtask distro_checkall after do_distro_check
680do_distro_checkall[recrdeptask] = "do_distro_check" 680do_distro_checkall[recrdeptask] = "do_distro_checkall do_distro_check"
681do_distro_checkall[nostamp] = "1" 681do_distro_checkall[nostamp] = "1"
682do_distro_checkall() { 682do_distro_checkall() {
683 : 683 :
@@ -727,7 +727,7 @@ python do_checklicense() {
727} 727}
728 728
729addtask checklicenseall after do_checklicense 729addtask checklicenseall after do_checklicense
730do_checklicenseall[recrdeptask] = "do_checklicense" 730do_checklicenseall[recrdeptask] = "do_checklicenseall do_checklicense"
731do_checklicenseall[nostamp] = "1" 731do_checklicenseall[nostamp] = "1"
732do_checklicenseall() { 732do_checklicenseall() {
733 : 733 :
diff --git a/meta/classes/recipe_sanity.bbclass b/meta/classes/recipe_sanity.bbclass
index da8ad76c96..61e07bf043 100644
--- a/meta/classes/recipe_sanity.bbclass
+++ b/meta/classes/recipe_sanity.bbclass
@@ -136,11 +136,10 @@ python do_recipe_sanity () {
136 bad_runtime_vars(cfgdata, d) 136 bad_runtime_vars(cfgdata, d)
137} 137}
138do_recipe_sanity[nostamp] = "1" 138do_recipe_sanity[nostamp] = "1"
139#do_recipe_sanity[recrdeptask] = "do_recipe_sanity"
140addtask recipe_sanity 139addtask recipe_sanity
141 140
142do_recipe_sanity_all[nostamp] = "1" 141do_recipe_sanity_all[nostamp] = "1"
143do_recipe_sanity_all[recrdeptask] = "do_recipe_sanity" 142do_recipe_sanity_all[recrdeptask] = "do_recipe_sanity_all do_recipe_sanity"
144do_recipe_sanity_all () { 143do_recipe_sanity_all () {
145 : 144 :
146} 145}
diff --git a/meta/classes/utility-tasks.bbclass b/meta/classes/utility-tasks.bbclass
index cbb000a1e3..6c2232ec57 100644
--- a/meta/classes/utility-tasks.bbclass
+++ b/meta/classes/utility-tasks.bbclass
@@ -46,20 +46,14 @@ python do_checkuri() {
46} 46}
47 47
48addtask checkuriall after do_checkuri 48addtask checkuriall after do_checkuri
49do_checkuriall[recrdeptask] = "do_checkuri" 49do_checkuriall[recrdeptask] = "do_checkuriall do_checkuri"
50do_checkuriall[nostamp] = "1" 50do_checkuriall[nostamp] = "1"
51do_checkuriall() { 51do_checkuriall() {
52 : 52 :
53} 53}
54 54
55addtask fetchall after do_fetch 55addtask fetchall after do_fetch
56do_fetchall[recrdeptask] = "do_fetch" 56do_fetchall[recrdeptask] = "do_fetchall do_fetch"
57do_fetchall() { 57do_fetchall() {
58 : 58 :
59} 59}
60
61addtask buildall after do_build
62do_buildall[recrdeptask] = "do_build"
63do_buildall() {
64 :
65}