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>
This commit is contained in:
Richard Purdie 2010-03-22 17:12:38 +00:00
parent 70141cbcc8
commit a4008b883c
1 changed files with 6 additions and 6 deletions

View File

@ -13,7 +13,7 @@ python do_listtasks() {
addtask clean addtask clean
do_clean[dirs] = "${TOPDIR}" do_clean[dirs] = "${TOPDIR}"
do_clean[nostamp] = "1" do_clean[nostamp] = "1"
python base_do_clean() { python do_clean() {
"""clear the build and temp directories""" """clear the build and temp directories"""
dir = bb.data.expand("${WORKDIR}", d) dir = bb.data.expand("${WORKDIR}", d)
if dir == '//': raise bb.build.FuncFailed("wrong DATADIR") if dir == '//': raise bb.build.FuncFailed("wrong DATADIR")
@ -28,14 +28,14 @@ python base_do_clean() {
addtask rebuild after do_${BB_DEFAULT_TASK} addtask rebuild after do_${BB_DEFAULT_TASK}
do_rebuild[dirs] = "${TOPDIR}" do_rebuild[dirs] = "${TOPDIR}"
do_rebuild[nostamp] = "1" do_rebuild[nostamp] = "1"
python base_do_rebuild() { python do_rebuild() {
"""rebuild a package""" """rebuild a package"""
} }
#addtask mrproper #addtask mrproper
#do_mrproper[dirs] = "${TOPDIR}" #do_mrproper[dirs] = "${TOPDIR}"
#do_mrproper[nostamp] = "1" #do_mrproper[nostamp] = "1"
#python base_do_mrproper() { #python do_mrproper() {
# """clear downloaded sources, build and temp directories""" # """clear downloaded sources, build and temp directories"""
# dir = bb.data.expand("${DL_DIR}", d) # dir = bb.data.expand("${DL_DIR}", d)
# if dir == '/': bb.build.FuncFailed("wrong DATADIR") # if dir == '/': bb.build.FuncFailed("wrong DATADIR")
@ -79,19 +79,19 @@ python do_checkuri() {
addtask checkuriall after do_checkuri addtask checkuriall after do_checkuri
do_checkuriall[recrdeptask] = "do_checkuri" do_checkuriall[recrdeptask] = "do_checkuri"
do_checkuriall[nostamp] = "1" do_checkuriall[nostamp] = "1"
base_do_checkuriall() { do_checkuriall() {
: :
} }
addtask fetchall after do_fetch addtask fetchall after do_fetch
do_fetchall[recrdeptask] = "do_fetch" do_fetchall[recrdeptask] = "do_fetch"
base_do_fetchall() { do_fetchall() {
: :
} }
addtask buildall after do_build addtask buildall after do_build
do_buildall[recrdeptask] = "do_build" do_buildall[recrdeptask] = "do_build"
base_do_buildall() { do_buildall() {
: :
} }