summaryrefslogtreecommitdiff
path: root/classes/base.bbclass
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2008-02-21 09:40:00 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2008-02-21 09:40:00 +0000
commit387f7d8d065b710036dcddf2be1b6d1809133acd (patch)
treec026ca4fa9e7711969ff63a47f3aa2317cd30ceb /classes/base.bbclass
parentbf4b8015982e2cd26049a340f48a2191fd431c11 (diff)
parent6836f43ea4f5dffc94d623c01cf3c39b56af8eef (diff)
merge of '1d187fa547c16ed9ca31c2975f54b8812e88b0f6'
and '7cc9c98056838b4d2eb67baf00c13e220ae94a0a'
Diffstat (limited to 'classes/base.bbclass')
-rw-r--r--classes/base.bbclass5
1 files changed, 0 insertions, 5 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass
index c8ee75627f..3250e0ca43 100644
--- a/classes/base.bbclass
+++ b/classes/base.bbclass
@@ -412,7 +412,6 @@ python do_listtasks() {
addtask clean
do_clean[dirs] = "${TOPDIR}"
do_clean[nostamp] = "1"
-do_clean[bbdepcmd] = ""
python base_do_clean() {
"""clear the build and temp directories"""
dir = bb.data.expand("${WORKDIR}", d)
@@ -428,7 +427,6 @@ python base_do_clean() {
addtask rebuild
do_rebuild[dirs] = "${TOPDIR}"
do_rebuild[nostamp] = "1"
-do_rebuild[bbdepcmd] = ""
python base_do_rebuild() {
"""rebuild a package"""
bb.build.exec_task('do_clean', d)
@@ -438,7 +436,6 @@ python base_do_rebuild() {
addtask mrproper
do_mrproper[dirs] = "${TOPDIR}"
do_mrproper[nostamp] = "1"
-do_mrproper[bbdepcmd] = ""
python base_do_mrproper() {
"""clear downloaded sources, build and temp directories"""
dir = bb.data.expand("${DL_DIR}", d)
@@ -680,7 +677,6 @@ python base_eventhandler() {
addtask configure after do_unpack do_patch
do_configure[dirs] = "${S} ${B}"
-do_configure[bbdepcmd] = "do_populate_staging"
do_configure[deptask] = "do_populate_staging"
base_do_configure() {
:
@@ -688,7 +684,6 @@ base_do_configure() {
addtask compile after do_configure
do_compile[dirs] = "${S} ${B}"
-do_compile[bbdepcmd] = "do_populate_staging"
base_do_compile() {
if [ -e Makefile -o -e makefile ]; then
oe_runmake || die "make failed"