summaryrefslogtreecommitdiffstats
path: root/meta/classes/base.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-05-29 09:28:36 +0000
committerRichard Purdie <richard@openedhand.com>2008-05-29 09:28:36 +0000
commit9e6cfe222510a561d02c883a82a4f52551bcb051 (patch)
treec0f09a2868f7677bac2b639c9c889f62f3b28b61 /meta/classes/base.bbclass
parent6a86b13028b8aaf8a9d6f68f9ee683658fe42fa2 (diff)
downloadpoky-9e6cfe222510a561d02c883a82a4f52551bcb051.tar.gz
base.bbclass: Disable do_mrproper - it doesn't do anything sane/useful
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4563 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/base.bbclass')
-rw-r--r--meta/classes/base.bbclass24
1 files changed, 12 insertions, 12 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index 34f9c181c4..17935fe9ad 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -471,17 +471,17 @@ python base_do_rebuild() {
471 """rebuild a package""" 471 """rebuild a package"""
472} 472}
473 473
474addtask mrproper 474#addtask mrproper
475do_mrproper[dirs] = "${TOPDIR}" 475#do_mrproper[dirs] = "${TOPDIR}"
476do_mrproper[nostamp] = "1" 476#do_mrproper[nostamp] = "1"
477python base_do_mrproper() { 477#python base_do_mrproper() {
478 """clear downloaded sources, build and temp directories""" 478# """clear downloaded sources, build and temp directories"""
479 dir = bb.data.expand("${DL_DIR}", d) 479# dir = bb.data.expand("${DL_DIR}", d)
480 if dir == '/': bb.build.FuncFailed("wrong DATADIR") 480# if dir == '/': bb.build.FuncFailed("wrong DATADIR")
481 bb.debug(2, "removing " + dir) 481# bb.debug(2, "removing " + dir)
482 os.system('rm -rf ' + dir) 482# os.system('rm -rf ' + dir)
483 bb.build.exec_func('do_clean', d) 483# bb.build.exec_func('do_clean', d)
484} 484#}
485 485
486SCENEFUNCS += "base_scenefunction" 486SCENEFUNCS += "base_scenefunction"
487 487
@@ -1057,7 +1057,7 @@ inherit patch
1057# Move to autotools.bbclass? 1057# Move to autotools.bbclass?
1058inherit siteinfo 1058inherit siteinfo
1059 1059
1060EXPORT_FUNCTIONS do_setscene do_clean do_mrproper do_fetch do_unpack do_configure do_compile do_install do_package do_populate_pkgs do_stage do_rebuild do_fetchall 1060EXPORT_FUNCTIONS do_setscene do_clean do_fetch do_unpack do_configure do_compile do_install do_package do_populate_pkgs do_stage do_rebuild do_fetchall
1061 1061
1062MIRRORS[func] = "0" 1062MIRRORS[func] = "0"
1063MIRRORS () { 1063MIRRORS () {