summaryrefslogtreecommitdiffstats
path: root/meta/classes/utility-tasks.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-03-22 17:12:38 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2010-03-22 17:12:38 +0000
commita4008b883c5b4e50f6a2a74e42242d5653665cfe (patch)
treed69e017f689e2f6575c6a952c041ca683a2c9e5e /meta/classes/utility-tasks.bbclass
parent70141cbcc84f0911edaa7d91de6ba2daa64319cc (diff)
downloadpoky-a4008b883c5b4e50f6a2a74e42242d5653665cfe.tar.gz
utility-tasks.bbclass: Remove unneeded base_ prefix since we don't EXPORT these functions any longer
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/classes/utility-tasks.bbclass')
-rw-r--r--meta/classes/utility-tasks.bbclass12
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/classes/utility-tasks.bbclass b/meta/classes/utility-tasks.bbclass
index d4d47bfa42..8bec8d463a 100644
--- a/meta/classes/utility-tasks.bbclass
+++ b/meta/classes/utility-tasks.bbclass
@@ -13,7 +13,7 @@ python do_listtasks() {
13addtask clean 13addtask clean
14do_clean[dirs] = "${TOPDIR}" 14do_clean[dirs] = "${TOPDIR}"
15do_clean[nostamp] = "1" 15do_clean[nostamp] = "1"
16python base_do_clean() { 16python do_clean() {
17 """clear the build and temp directories""" 17 """clear the build and temp directories"""
18 dir = bb.data.expand("${WORKDIR}", d) 18 dir = bb.data.expand("${WORKDIR}", d)
19 if dir == '//': raise bb.build.FuncFailed("wrong DATADIR") 19 if dir == '//': raise bb.build.FuncFailed("wrong DATADIR")
@@ -28,14 +28,14 @@ python base_do_clean() {
28addtask rebuild after do_${BB_DEFAULT_TASK} 28addtask rebuild after do_${BB_DEFAULT_TASK}
29do_rebuild[dirs] = "${TOPDIR}" 29do_rebuild[dirs] = "${TOPDIR}"
30do_rebuild[nostamp] = "1" 30do_rebuild[nostamp] = "1"
31python base_do_rebuild() { 31python do_rebuild() {
32 """rebuild a package""" 32 """rebuild a package"""
33} 33}
34 34
35#addtask mrproper 35#addtask mrproper
36#do_mrproper[dirs] = "${TOPDIR}" 36#do_mrproper[dirs] = "${TOPDIR}"
37#do_mrproper[nostamp] = "1" 37#do_mrproper[nostamp] = "1"
38#python base_do_mrproper() { 38#python do_mrproper() {
39# """clear downloaded sources, build and temp directories""" 39# """clear downloaded sources, build and temp directories"""
40# dir = bb.data.expand("${DL_DIR}", d) 40# dir = bb.data.expand("${DL_DIR}", d)
41# if dir == '/': bb.build.FuncFailed("wrong DATADIR") 41# if dir == '/': bb.build.FuncFailed("wrong DATADIR")
@@ -79,19 +79,19 @@ python do_checkuri() {
79addtask checkuriall after do_checkuri 79addtask checkuriall after do_checkuri
80do_checkuriall[recrdeptask] = "do_checkuri" 80do_checkuriall[recrdeptask] = "do_checkuri"
81do_checkuriall[nostamp] = "1" 81do_checkuriall[nostamp] = "1"
82base_do_checkuriall() { 82do_checkuriall() {
83 : 83 :
84} 84}
85 85
86addtask fetchall after do_fetch 86addtask fetchall after do_fetch
87do_fetchall[recrdeptask] = "do_fetch" 87do_fetchall[recrdeptask] = "do_fetch"
88base_do_fetchall() { 88do_fetchall() {
89 : 89 :
90} 90}
91 91
92addtask buildall after do_build 92addtask buildall after do_build
93do_buildall[recrdeptask] = "do_build" 93do_buildall[recrdeptask] = "do_build"
94base_do_buildall() { 94do_buildall() {
95 : 95 :
96} 96}
97 97